diff --git a/AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj b/AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj index 8c9c4c3e..97b16340 100644 --- a/AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj +++ b/AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj @@ -130,7 +130,7 @@ { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:autoscreen, Version=2.3.6.6, Culture=neutral, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:autoscreen, Version=2.3.6.7, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { "_9ACC9C115A4F4BCABA938B9FF9F2199F" @@ -244,15 +244,15 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:Auto Screen Capture" - "ProductCode" = "8:{B3105AF7-032C-447B-A3DC-3373FEEC2726}" - "PackageCode" = "8:{0875329A-8072-4AED-9191-5855E07F01E4}" + "ProductCode" = "8:{3C8189F1-13EF-46AD-A60F-EEF7FCF9760A}" + "PackageCode" = "8:{B828E4AF-CE0C-48E3-98F1-BD4F2B88F579}" "UpgradeCode" = "8:{5A52167C-788C-412D-B0A1-ED40B962A74F}" "AspNetVersion" = "8:4.0.30319.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:2.3.66" + "ProductVersion" = "8:2.3.67" "Manufacturer" = "8:Gavin Kendall" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:https://sourceforge.net/p/autoscreen/tickets/" diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 0b34910f..b3f6463a 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.3.6.6")] -[assembly: AssemblyFileVersion("2.3.6.6")] +[assembly: AssemblyVersion("2.3.6.7")] +[assembly: AssemblyFileVersion("2.3.6.7")] [assembly: NeutralResourcesLanguageAttribute("en-CA")] \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index fe89afac..d2e1cca9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,7 @@ Auto Screen Capture by Gavin Kendall Codename "Boombayah" +2.3.6.7 Fixed bug with emailing screenshots from a one time schedule. 2.3.6.6 Execution level changed from highestAvailable to asInvoker. 2.3.6.5 Execution level changed from requireAdministrator to highestAvailable. 2.3.6.4 The Trigger form looks better. diff --git a/interface/FormAbout.resx b/interface/FormAbout.resx index 849f4cb0..81c6b375 100644 --- a/interface/FormAbout.resx +++ b/interface/FormAbout.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Auto Screen Capture 2.3.6.6 ("Boombayah") + Auto Screen Capture 2.3.6.7 ("Boombayah") Developed by Gavin Kendall (2008 - 2021) SourceForge Project Site @@ -128,12 +128,13 @@ GitHub Project Site https://github.com/gavinkendall/autoscreen/ - 2.3.6.6 + 2.3.6.7 -Execution level changed from highestAvailable to asInvoker. +Fixed bug with emailing screenshots from a one time schedule. Codename "Boombayah" +2.3.6.7 Fixed bug with emailing screenshots from a one time schedule. 2.3.6.6 Execution level changed from highestAvailable to asInvoker. 2.3.6.5 Execution level changed from requireAdministrator to highestAvailable. 2.3.6.4 The Trigger form looks better. diff --git a/interface/main/FormMain-Screenshots.cs b/interface/main/FormMain-Screenshots.cs index 387c0062..7bf4c985 100644 --- a/interface/main/FormMain-Screenshots.cs +++ b/interface/main/FormMain-Screenshots.cs @@ -678,7 +678,7 @@ private bool EmailScreenshot(Screenshot screenshot, bool prompt) private void EmailScreenshot(TriggerActionType triggerActionType) { - if (triggerActionType == TriggerActionType.EmailScreenshot && _screenCapture.Running) + if (triggerActionType == TriggerActionType.EmailScreenshot) { Screenshot lastScreenshotOfThisView = _screenshotCollection.GetLastScreenshotOfView(_screenshotCollection.LastViewId); diff --git a/settings/Settings.cs b/settings/Settings.cs index 868c0e20..2154e222 100644 --- a/settings/Settings.cs +++ b/settings/Settings.cs @@ -235,6 +235,7 @@ public void Load(FileSystem fileSystem) _versionCollection.Add(new Version(CODENAME_BOOMBAYAH, "2.3.6.3")); // No Match option implemented for Active Window Title. Fixed visibility bug when no Triggers are available on startup. _versionCollection.Add(new Version(CODENAME_BOOMBAYAH, "2.3.6.4")); // The Trigger form looks better. _versionCollection.Add(new Version(CODENAME_BOOMBAYAH, "2.3.6.5")); // Execution level changed from requireAdministrator to highestAvailable. + _versionCollection.Add(new Version(CODENAME_BOOMBAYAH, "2.3.6.6")); // Execution level changed from highestAvailable to asInvoker. Application = new SettingCollection() {