@@ -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