Skip to content

Commit 346e4db

Browse files
2.2.0.9 - Fixed upgrade path from older versions
1 parent b7f68af commit 346e4db

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

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.2.0.8")]
36-
[assembly: AssemblyFileVersion("2.2.0.8")]
35+
[assembly: AssemblyVersion("2.2.0.9")]
36+
[assembly: AssemblyFileVersion("2.2.0.9")]
3737
[assembly: NeutralResourcesLanguageAttribute("en-CA")]

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.2.0.8"/>
6+
version="2.2.0.9"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

settings/Settings.cs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace AutoScreenCapture
1313
public static class Settings
1414
{
1515
public static readonly string ApplicationName = "Auto Screen Capture";
16-
public static readonly string ApplicationVersion = "2.2.0.8";
16+
public static readonly string ApplicationVersion = "2.2.0.9";
1717
public static readonly string ApplicationCodename = "Dalek";
1818

1919
public static SettingCollection Application;
@@ -29,9 +29,17 @@ public static void Initialize()
2929
// This version.
3030
_versionCollection.Add(new Version(ApplicationCodename, ApplicationVersion, isCurrentVersion: true));
3131

32-
// Older versions should be listed here only if you need to check for a specific version
33-
// in order to upgrade a particular area of the application.
34-
_versionCollection.Add(new Version("Clara", "2.1.8.2"));
32+
// Older versions should be listed here.
33+
_versionCollection.Add(new Version("Clara", "2.1.8.2")); // Last version that introduced the Macro concept
34+
_versionCollection.Add(new Version("Dalek", "2.2.0.0")); // Support for unlimited number of screens
35+
_versionCollection.Add(new Version("Dalek", "2.2.0.1")); // Fixed empty window title bug
36+
_versionCollection.Add(new Version("Dalek", "2.2.0.2")); // Continue screen capture session when drive not available
37+
_versionCollection.Add(new Version("Dalek", "2.2.0.3")); // Changes to how we save screenshots
38+
_versionCollection.Add(new Version("Dalek", "2.2.0.4")); // More changes to how we save screenshots
39+
_versionCollection.Add(new Version("Dalek", "2.2.0.5")); // Fixes the changes to how we save screenshots
40+
_versionCollection.Add(new Version("Dalek", "2.2.0.6")); // Can now select an existing label when applying a label
41+
_versionCollection.Add(new Version("Dalek", "2.2.0.7")); // Fixed upgrade path from old versions. Can now filter by Process Name
42+
_versionCollection.Add(new Version("Dalek", "2.2.0.8")); // Introduced %user% and %machine% macro tags
3543

3644
Application = new SettingCollection();
3745
Application.Filepath = FileSystem.SettingsFolder + FileSystem.ApplicationSettingsFile;

0 commit comments

Comments
 (0)