Skip to content

Commit

Permalink
v1.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Beelink committed Jan 11, 2020
1 parent d3afbe0 commit eddeaba
Show file tree
Hide file tree
Showing 35 changed files with 235 additions and 138 deletions.
Binary file modified .vs/quick-picture-viewer/v16/.suo
Binary file not shown.
Binary file modified .vs/quick-picture-viewer/v16/Server/sqlite3/storage.ide
Binary file not shown.
14 changes: 7 additions & 7 deletions QuickPictureViewer-Setup/QuickPictureViewer-Setup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_9E165066DD6307D67C7B835ACD3F2087"
"OwnerKey" = "8:_602081345A8B570EE42EFE35A1D60858"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
Expand All @@ -76,7 +76,7 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_602081345A8B570EE42EFE35A1D60858"
"OwnerKey" = "8:_9E165066DD6307D67C7B835ACD3F2087"
"MsmSig" = "8:_UNDEFINED"
}
}
Expand Down Expand Up @@ -373,23 +373,23 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Quick Picture Viewer"
"ProductCode" = "8:{B2FA8817-26BA-4186-8202-EBD9C5CDAA99}"
"PackageCode" = "8:{4BE7925D-0139-4943-8C39-4527037F1F29}"
"ProductCode" = "8:{19C61DD7-1087-4392-863E-FAD2AA7B6A13}"
"PackageCode" = "8:{959BC8F3-0719-4893-AA01-A29F1C3B2554}"
"UpgradeCode" = "8:{D9871B4D-DF1B-418F-A7BF-D5F44A9FCFCE}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.9.4"
"ProductVersion" = "8:1.9.5"
"Manufacturer" = "8:Module Art"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
"Title" = "8:Quick Picture Viewer"
"Subject" = "8:"
"ARPCONTACT" = "8:Module Art"
"Keywords" = "8:"
"ARPCOMMENTS" = "8:Lightweight picture viewer for Windows"
"ARPCOMMENTS" = "8:Lightweight desktop photo viewer for Windows"
"ARPURLINFOABOUT" = "8:https://moduleart.github.io"
"ARPPRODUCTICON" = "8:_C3E94029681345CDB595943F27D860BD"
"ARPIconIndex" = "3:0"
Expand Down Expand Up @@ -1827,7 +1827,7 @@
{
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_4B597F9189B6419DBE3695587B370B9E"
{
"SourcePath" = "8:..\\quick-picture-viewer\\obj\\Debug\\quick-picture-viewer.exe"
"SourcePath" = "8:..\\quick-picture-viewer\\obj\\Release\\quick-picture-viewer.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_259C1F6F99A84F81BA44246337DEBF66"
Expand Down
Binary file modified QuickPictureViewer-Setup/Release/QuickPictureViewer-Setup.msi
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<h2 align="center">Install</h2>
<p align="center">
Windows 7, 8.1, 10 | Size: 1.1 MB | v1.9.4 | <a href="https://github.com/ModuleArt/quick-picture-viewer/releases/download/v1.9.4/QuickPictureViewer-Setup.msi">Download</a><br>
Windows 7, 8.1, 10 | Size: 1.1 MB | v1.9.5 | <a href="https://github.com/ModuleArt/quick-picture-viewer/releases/download/v1.9.5/QuickPictureViewer-Setup.msi">Download</a><br>
Uses <a href="https://dotnet.microsoft.com/download/dotnet-framework/net472">.Net 4.7.2</a>
</p>

Expand Down
1 change: 1 addition & 0 deletions quick-picture-viewer/AboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions quick-picture-viewer/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ partial class AboutForm : Form
public AboutForm()
{
InitializeComponent();
}

private void AboutForm_Load(object sender, EventArgs e)
{
versionLabel.Text = String.Format("Version: {0}", Assembly.GetExecutingAssembly().GetName().Version.ToString().Substring(0, 5));

if (ThemeManager.isDarkTheme())
{
ThemeManager.enableDarkTitlebar(this.Handle);

this.BackColor = ThemeManager.BackColorDark;
this.ForeColor = Color.White;

Expand All @@ -34,6 +35,8 @@ public AboutForm()
licenseLink.LinkColor = linkColor;

okButton.BackColor = ThemeManager.SecondColorDark;

ThemeManager.enableDarkTitlebar(this.Handle, true);
}
}

Expand Down
4 changes: 2 additions & 2 deletions quick-picture-viewer/InfoForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public InfoForm(Bitmap bitmap, string directoryName, string fileName)

if (ThemeManager.isDarkTheme())
{
ThemeManager.enableDarkTitlebar(this.Handle);

this.BackColor = ThemeManager.BackColorDark;
this.ForeColor = Color.White;

Expand Down Expand Up @@ -64,6 +62,8 @@ public InfoForm(Bitmap bitmap, string directoryName, string fileName)

modifiedTextBox.BackColor = ThemeManager.SecondColorDark;
modifiedTextBox.ForeColor = Color.White;

ThemeManager.enableDarkTitlebar(this.Handle, true);
}

if (directoryName != null)
Expand Down
44 changes: 37 additions & 7 deletions quick-picture-viewer/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit eddeaba

Please sign in to comment.