Skip to content

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Beelink committed Oct 21, 2020
1 parent daf4140 commit d1dc380
Show file tree
Hide file tree
Showing 34 changed files with 31 additions and 20 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.
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.2"
#define MyAppVersion "2.2.3"
#define MyAppPublisher "Module Art"
#define MyAppURL "https://moduleart.github.io"
#define MyAppExeName "quick-picture-viewer.exe"
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.

10 changes: 10 additions & 0 deletions quick-picture-viewer/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2232,5 +2232,15 @@ private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
NewWindow();
}
}

private void toolStrip1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
Cursor.Current = Cursors.SizeAll;
NativeMethodsManager.ReleaseCapture();
NativeMethodsManager.SendMessage(Handle, 0xA1, 0x2, 0);
}
}
}
}
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.1.0, Culture=neutral, PublicKeyToken=null</value>
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.2.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;picturePanel.Parent" xml:space="preserve">
<value>$this</value>
Expand Down
2 changes: 1 addition & 1 deletion quick-picture-viewer/PluginMenuItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ string configureText
)
{
this.Text = func.title.Get(Properties.Settings.Default.Language);
this.dllPath = Path.Combine(Directory.GetCurrentDirectory(), "plugins", pi.name, pi.name + ".dll");
this.dllPath = Path.Combine(PluginManager.pluginsFolder, pi.name, pi.name + ".dll");

if (func.props.imageRequired)
{
Expand Down
16 changes: 8 additions & 8 deletions quick-picture-viewer/PrintForm.Designer.cs

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

4 changes: 2 additions & 2 deletions quick-picture-viewer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.2")]
[assembly: AssemblyFileVersion("2.2.2")]
[assembly: AssemblyVersion("2.2.3")]
[assembly: AssemblyFileVersion("2.2.3")]
[assembly: NeutralResourcesLanguage("en")]
4 changes: 2 additions & 2 deletions quick-picture-viewer/SettingsForm.Designer.cs

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

8 changes: 4 additions & 4 deletions quick-picture-viewer/SvgOpsForm.Designer.cs

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

Binary file modified quick-picture-viewer/bin/Debug/QuickLibrary.dll
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/QuickLibrary.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "quick-picture-viewer",
"minVersion": "2.2.0",
"maxVersion": "2.2.2"
"maxVersion": "2.3.0"
}
],
"functions": [
Expand Down
Binary file modified quick-picture-viewer/bin/Debug/quick-picture-viewer.exe
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/quick-picture-viewer.pdb
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Release/QuickLibrary.dll
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Release/QuickLibrary.pdb
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Release/quick-picture-viewer.exe
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Release/quick-picture-viewer.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified quick-picture-viewer/obj/Debug/quick-picture-viewer.exe
Binary file not shown.
Binary file modified quick-picture-viewer/obj/Debug/quick-picture-viewer.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified quick-picture-viewer/obj/Release/quick-picture-viewer.exe
Binary file not shown.
Binary file modified quick-picture-viewer/obj/Release/quick-picture-viewer.pdb
Binary file not shown.
Binary file not shown.

0 comments on commit d1dc380

Please sign in to comment.