Skip to content

Commit d1dc380

Browse files
committed
v2.2.3
1 parent daf4140 commit d1dc380

34 files changed

+31
-20
lines changed

β€Ž.vs/quick-picture-viewer/v16/.suo

8.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
722 Bytes
Binary file not shown.

β€Žinno-setup/quick-picture-viewer.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Quick Picture Viewer"
5-
#define MyAppVersion "2.2.2"
5+
#define MyAppVersion "2.2.3"
66
#define MyAppPublisher "Module Art"
77
#define MyAppURL "https://moduleart.github.io"
88
#define MyAppExeName "quick-picture-viewer.exe"

β€Žquick-picture-viewer/MainForm.Designer.cs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žquick-picture-viewer/MainForm.cs

+10
Original file line numberDiff line numberDiff line change
@@ -2232,5 +2232,15 @@ private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
22322232
NewWindow();
22332233
}
22342234
}
2235+
2236+
private void toolStrip1_MouseDown(object sender, MouseEventArgs e)
2237+
{
2238+
if (e.Button == MouseButtons.Left)
2239+
{
2240+
Cursor.Current = Cursors.SizeAll;
2241+
NativeMethodsManager.ReleaseCapture();
2242+
NativeMethodsManager.SendMessage(Handle, 0xA1, 0x2, 0);
2243+
}
2244+
}
22352245
}
22362246
}

β€Žquick-picture-viewer/MainForm.resx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@
12901290
<value>picturePanel</value>
12911291
</data>
12921292
<data name="&gt;&gt;picturePanel.Type" xml:space="preserve">
1293-
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.1.0, Culture=neutral, PublicKeyToken=null</value>
1293+
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.2.0, Culture=neutral, PublicKeyToken=null</value>
12941294
</data>
12951295
<data name="&gt;&gt;picturePanel.Parent" xml:space="preserve">
12961296
<value>$this</value>

β€Žquick-picture-viewer/PluginMenuItem.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ string configureText
2323
)
2424
{
2525
this.Text = func.title.Get(Properties.Settings.Default.Language);
26-
this.dllPath = Path.Combine(Directory.GetCurrentDirectory(), "plugins", pi.name, pi.name + ".dll");
26+
this.dllPath = Path.Combine(PluginManager.pluginsFolder, pi.name, pi.name + ".dll");
2727

2828
if (func.props.imageRequired)
2929
{

β€Žquick-picture-viewer/PrintForm.Designer.cs

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žquick-picture-viewer/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("2.2.2")]
36-
[assembly: AssemblyFileVersion("2.2.2")]
35+
[assembly: AssemblyVersion("2.2.3")]
36+
[assembly: AssemblyFileVersion("2.2.3")]
3737
[assembly: NeutralResourcesLanguage("en")]

β€Žquick-picture-viewer/SettingsForm.Designer.cs

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žquick-picture-viewer/SvgOpsForm.Designer.cs

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

β€Žquick-picture-viewer/bin/Debug/plugins/qpv-blur/qpv-blur.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"name": "quick-picture-viewer",
2020
"minVersion": "2.2.0",
21-
"maxVersion": "2.2.2"
21+
"maxVersion": "2.3.0"
2222
}
2323
],
2424
"functions": [
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
Β (0)