Skip to content

Commit eb1f628

Browse files
2.1.6.5 - Bug fix.
1 parent 909e9da commit eb1f628

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

FormMain.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ public FormMain(string[] args)
9191

9292
Log.Write("*** " + Properties.Settings.Default.ApplicationName + " (" + Properties.Settings.Default.ApplicationVersion + ") ***");
9393

94+
if (!Directory.Exists(FileSystem.UserAppDataLocalDirectory))
95+
{
96+
Directory.CreateDirectory(FileSystem.UserAppDataLocalDirectory);
97+
}
98+
9499
LoadApplicationSettings();
95100

96101
if (args.Length > 0)

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
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.1.6.4")]
36-
[assembly: AssemblyFileVersion("2.1.6.4")]
35+
[assembly: AssemblyVersion("2.1.6.5")]
36+
[assembly: AssemblyFileVersion("2.1.6.5")]
3737
[assembly: NeutralResourcesLanguageAttribute("en-CA")]

Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Properties/Settings.settings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Value Profile="(Default)">60000</Value>
77
</Setting>
88
<Setting Name="ApplicationVersion" Type="System.String" Scope="Application">
9-
<Value Profile="(Default)">2.1.6.4</Value>
9+
<Value Profile="(Default)">2.1.6.5</Value>
1010
</Setting>
1111
<Setting Name="ImageFormatFilter" Type="System.String" Scope="User">
1212
<Value Profile="(Default)">*.*</Value>

app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
<applicationSettings>
197197
<AutoScreenCapture.Properties.Settings>
198198
<setting name="ApplicationVersion" serializeAs="String">
199-
<value>2.1.6.4</value>
199+
<value>2.1.6.5</value>
200200
</setting>
201201
<setting name="ApplicationName" serializeAs="String">
202202
<value>Auto Screen Capture</value>

app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
type="win32"
55
name="GavinKendall.AutoScreenCapture"
6-
version="2.1.6.4"/>
6+
version="2.1.6.5"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

0 commit comments

Comments
 (0)