Skip to content

Commit

Permalink
v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Beelink committed Oct 18, 2020
1 parent f4549a1 commit 5cc7ea3
Show file tree
Hide file tree
Showing 61 changed files with 3,041 additions and 322 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.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</a>
<div class="navbar">
<a href="#donate">
<div class="link">Donate</div>
<div class="link">Donate</div>
</a>
<a href="https://github.com/ModuleArt">
<div class="link">GitHub</div>
Expand Down
Binary file modified inno-setup/QuickPictureViewer-Setup.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion inno-setup/quick-picture-viewer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Quick Picture Viewer"
#define MyAppVersion "2.2.1"
#define MyAppVersion "2.2.2"
#define MyAppPublisher "Module Art"
#define MyAppURL "https://moduleart.github.io"
#define MyAppExeName "quick-picture-viewer.exe"
Expand Down
1 change: 0 additions & 1 deletion quick-picture-viewer/AboutForm.Designer.cs

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

3 changes: 1 addition & 2 deletions quick-picture-viewer/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,12 @@ private void SetDarkMode(bool dark)
{
if (dark)
{
this.BackColor = ThemeManager.DarkBackColor;
this.ForeColor = Color.White;
descTextBox.BackColor = ThemeManager.DarkBackColor;
descTextBox.ForeColor = Color.White;
makeDefaultBtn.BackColor = ThemeManager.DarkSecondColor;
}

DarkMode = dark;
closeBtn.SetDarkMode(dark);
}

Expand Down
1 change: 0 additions & 1 deletion quick-picture-viewer/InfoForm.Designer.cs

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

32 changes: 15 additions & 17 deletions quick-picture-viewer/InfoForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ private void SetDarkMode(bool dark)
{
if (dark)
{
this.BackColor = ThemeManager.DarkBackColor;
this.ForeColor = Color.White;

propertiesButton.BackColor = ThemeManager.DarkSecondColor;
propertiesButton.Image = Properties.Resources.white_imgfile;

Expand All @@ -54,21 +51,22 @@ private void SetDarkMode(bool dark)
copyPathButton.BackColor = ThemeManager.DarkSecondColor;
}

DarkMode = dark;
closeBtn.SetDarkMode(dark);
fileNameTextBox.SetDarkMode(dark);
folderTextBox.SetDarkMode(dark);
fullPathTextBox.SetDarkMode(dark);
compressionTextBox.SetDarkMode(dark);
extensionTextBox.SetDarkMode(dark);
sizeTextBox.SetDarkMode(dark);
megapixelsTextBox.SetDarkMode(dark);
resolutionTextBox.SetDarkMode(dark);
inchesTextBox.SetDarkMode(dark);
cmTextBox.SetDarkMode(dark);
diskSizeTextBox.SetDarkMode(dark);
ratioTextBox.SetDarkMode(dark);
createdTextBox.SetDarkMode(dark);
modifiedTextBox.SetDarkMode(dark);
fileNameTextBox.DarkMode = dark;
folderTextBox.DarkMode = dark;
fullPathTextBox.DarkMode = dark;
compressionTextBox.DarkMode = dark;
extensionTextBox.DarkMode = dark;
sizeTextBox.DarkMode = dark;
megapixelsTextBox.DarkMode = dark;
resolutionTextBox.DarkMode = dark;
inchesTextBox.DarkMode = dark;
cmTextBox.DarkMode = dark;
diskSizeTextBox.DarkMode = dark;
ratioTextBox.DarkMode = dark;
createdTextBox.DarkMode = dark;
modifiedTextBox.DarkMode = dark;
}

private int GCD(int a, int b)
Expand Down
1 change: 1 addition & 0 deletions quick-picture-viewer/MainForm.Designer.cs

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

2 changes: 1 addition & 1 deletion quick-picture-viewer/MainForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@
<value>picturePanel</value>
</data>
<data name="&gt;&gt;picturePanel.Type" xml:space="preserve">
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.1.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;picturePanel.Parent" xml:space="preserve">
<value>$this</value>
Expand Down
85 changes: 43 additions & 42 deletions quick-picture-viewer/MiniViewForm.Designer.cs

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

Loading

0 comments on commit 5cc7ea3

Please sign in to comment.