Skip to content

Commit 61d6f49

Browse files
committed
2.5.1.4 - A small fix for the -interval command.
1 parent 871c989 commit 61d6f49

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,15 @@
259259
{
260260
"Name" = "8:Microsoft Visual Studio"
261261
"ProductName" = "8:Auto Screen Capture"
262-
"ProductCode" = "8:{FF3E5424-0B67-4E7E-9FAB-358CA9E10FBD}"
263-
"PackageCode" = "8:{98388EDD-A4F5-4932-8B67-5E4B67CFF421}"
262+
"ProductCode" = "8:{92D9EFF0-B795-4A00-A888-420E91F6EE1F}"
263+
"PackageCode" = "8:{FA54205B-61BF-43EB-8B41-DEE0CF556F36}"
264264
"UpgradeCode" = "8:{6B29B7BC-0101-4495-B28C-26B6D3CDCC02}"
265265
"AspNetVersion" = "8:4.0.30319.0"
266266
"RestartWWWService" = "11:FALSE"
267267
"RemovePreviousVersions" = "11:TRUE"
268268
"DetectNewerInstalledVersion" = "11:TRUE"
269269
"InstallAllUsers" = "11:TRUE"
270-
"ProductVersion" = "8:2.5.13"
270+
"ProductVersion" = "8:2.5.14"
271271
"Manufacturer" = "8:Gavin Kendall"
272272
"ARPHELPTELEPHONE" = "8:"
273273
"ARPHELPLINK" = "8:https://sourceforge.net/p/autoscreen/tickets/"

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

autoscreen.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# The version of Auto Screen Capture that this configuration file is intended for.
3030
# Be careful if you change the version number and don't provide the correct definitions for the specific version
3131
# as some settings will only work with certain versions of the application. Versioning of the configuration file starts with Auto Screen Capture 2.5.0.0 ("Limoncello").
32-
Version=2.5.1.3
32+
Version=2.5.1.4
3333

3434
# Starting with version 2.5.0.0 the entire configuration file defines all the default application and user settings
3535
# that were previously hard-coded within the application itself. Now you have the ability to define all of the default settings in a single file!

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Auto Screen Capture by Gavin Kendall
22

3+
2.5.1.4 A small fix for the -interval command.
34
2.5.1.3 The full filepath of each screenshot is clearly displayed for each Screen and Region tab view, the Screenshot Location button is now bigger, the "Metadata" button is now named "Screenshot Metadata", and the "Configure" button is now named "Configure Screen" or "Configure Region" depending on what type of tab view is being shown. Help tips have been removed from the main interface. Fixed issue with Schedules not saving their Enable state.
45
2.5.1.2 Restored the ability to use milliseconds for the screen capture interval. Fixed bug with schedules that were supposed to override the main interval so that they now actually do override the main interval. Fixed cosmetic issue with Preview button. Fixed cosmetic issue with Screen Capture Status when Optimize Screen Capture was enabled. Command Deck now shows percentage of tolerance when Optimize Screen Capture is enabled.
56
2.5.1.1 Fixed issue with One Time screen capture.

interface/main/FormMain-CommandLine.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,15 @@ private void ParseCommandLineArguments(string[] args)
588588
int hours = Convert.ToInt32(Regex.Match(arg, REGEX_COMMAND_LINE_INTERVAL).Groups["Hours"].Value);
589589
int minutes = Convert.ToInt32(Regex.Match(arg, REGEX_COMMAND_LINE_INTERVAL).Groups["Minutes"].Value);
590590
int seconds = Convert.ToInt32(Regex.Match(arg, REGEX_COMMAND_LINE_INTERVAL).Groups["Seconds"].Value);
591-
int milliseconds = Convert.ToInt32(Regex.Match(arg, REGEX_COMMAND_LINE_INTERVAL).Groups["Milliseconds"].Value);
591+
592+
int milliseconds = 0;
593+
594+
string strMilliseconds = Regex.Match(arg, REGEX_COMMAND_LINE_INTERVAL).Groups["Milliseconds"].Value;
595+
596+
if (!string.IsNullOrEmpty(strMilliseconds))
597+
{
598+
milliseconds = Convert.ToInt32(strMilliseconds);
599+
}
592600

593601
_formSetup.numericUpDownHoursInterval.Value = hours;
594602
_formSetup.numericUpDownMinutesInterval.Value = minutes;

settings/Settings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ public void Initialize(FileSystem fileSystem)
285285
_versionCollection.Add(new Version(CODENAME_LIMONCELLO, "2.5.1.0"));
286286
_versionCollection.Add(new Version(CODENAME_LIMONCELLO, "2.5.1.1"));
287287
_versionCollection.Add(new Version(CODENAME_LIMONCELLO, "2.5.1.2"));
288+
_versionCollection.Add(new Version(CODENAME_LIMONCELLO, "2.5.1.3"));
288289

289290
Application = new SettingCollection()
290291
{

0 commit comments

Comments
 (0)