Skip to content

Commit b461b75

Browse files
2.2.0.22 - Fixed scheduled start time when running from command line.
1 parent 90355db commit b461b75

File tree

5 files changed

+19
-21
lines changed

5 files changed

+19
-21
lines changed

FormMain.Designer.cs

Lines changed: 10 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FormMain.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -603,8 +603,6 @@ private void ShowInterface()
603603
SaveSettings();
604604

605605
Opacity = 100;
606-
toolStripMenuItemShowInterface.Enabled = false;
607-
toolStripMenuItemHideInterface.Enabled = true;
608606

609607
SearchDates();
610608
SearchScreenshots();
@@ -641,8 +639,6 @@ private void HideInterface()
641639
Log.Write("Hiding interface");
642640

643641
Opacity = 0;
644-
toolStripMenuItemShowInterface.Enabled = true;
645-
toolStripMenuItemHideInterface.Enabled = false;
646642

647643
Hide();
648644
Visible = false;
@@ -1316,7 +1312,10 @@ private void ParseCommandLineArguments(string[] args)
13161312

13171313
InitializeThreads();
13181314

1319-
StartScreenCapture();
1315+
if (!checkBoxScheduleStartAt.Checked)
1316+
{
1317+
StartScreenCapture();
1318+
}
13201319
}
13211320
catch (Exception ex)
13221321
{

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.21")]
36-
[assembly: AssemblyFileVersion("2.2.0.21")]
35+
[assembly: AssemblyVersion("2.2.0.22")]
36+
[assembly: AssemblyFileVersion("2.2.0.22")]
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.21"/>
6+
version="2.2.0.22"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

settings/Settings.cs

Lines changed: 2 additions & 1 deletion
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.21";
16+
public static readonly string ApplicationVersion = "2.2.0.22";
1717
public static readonly string ApplicationCodename = "Dalek";
1818

1919
public static SettingCollection Application;
@@ -55,6 +55,7 @@ public static void Initialize()
5555
_versionCollection.Add(new Version(CODENAME_DALEK, "2.2.0.18")); // Performance improvement with writing screenshot references to screenshots.xml
5656
_versionCollection.Add(new Version(CODENAME_DALEK, "2.2.0.19")); // Fixing system tray icon messages when mouse hovers over icon during maintenance
5757
_versionCollection.Add(new Version(CODENAME_DALEK, "2.2.0.20")); // Tab pages auto scroll
58+
_versionCollection.Add(new Version(CODENAME_DALEK, "2.2.0.21")); // Introduced Configure menu for each Screen and Region
5859

5960
Application = new SettingCollection();
6061
Application.Filepath = FileSystem.SettingsFolder + FileSystem.ApplicationSettingsFile;

0 commit comments

Comments
 (0)