-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Yeah, I should have split this into topic commits, but mea culpa - 4.5.1 - VS2015 build - less locks in fileserver - Refactored repository and views - Proper FileStreamCache
- Loading branch information
Showing
153 changed files
with
3,422 additions
and
4,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ packages/ | |
*/obj | ||
*.suo | ||
*.user | ||
*.DotSettings | ||
*.dat | ||
setup/Debug | ||
setup/Release | ||
setup/*.cmd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
using NMaier.SimpleDlna.Utilities; | ||
using System; | ||
using System.Drawing; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
using System.Text; | ||
using NMaier.SimpleDlna.GUI.Properties; | ||
using NMaier.SimpleDlna.Utilities; | ||
using NMaier.Windows.Forms; | ||
|
||
namespace NMaier.SimpleDlna.GUI | ||
{ | ||
partial class FormAbout : NMaier.Windows.Forms.Form | ||
internal sealed partial class FormAbout : Form | ||
{ | ||
public FormAbout() | ||
{ | ||
InitializeComponent(); | ||
Text = String.Format("About {0}", ProductInformation.Title); | ||
Text = $"About {ProductInformation.Title}"; | ||
Product.Text = ProductInformation.Title; | ||
Product.Font = BoldFont; | ||
Version.Text = String.Format( | ||
"Version {0}", ProductInformation.ProductVersion); | ||
Version.Text = $"Version {ProductInformation.ProductVersion}"; | ||
Copyright.Text = ProductInformation.Copyright; | ||
Copyright.Font = ItalicFont; | ||
License.Text = Encoding.UTF8.GetString(Properties.Resources.LICENSE); | ||
License.Text = Encoding.UTF8.GetString(Resources.LICENSE); | ||
} | ||
} | ||
} |
Oops, something went wrong.