Skip to content

Commit 63a939e

Browse files
committed
2.3.4.5 - "Keep screenshots for X days" trigger is now inactive by default to avoid potential data loss.
1 parent 70fd25f commit 63a939e

File tree

5 files changed

+8
-6
lines changed

5 files changed

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

changelog.txt

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

55

66
Codename "Boombayah"
7+
2.3.4.5 "Keep screenshots for X days" trigger is now inactive by default to avoid potential data loss.
78
2.3.4.4 Fix to Screen Capture method.
89
2.3.4.3 Fix to Screen Capture method.
910
2.3.4.2 Fix to Screen form for preview image.

interface/FormAbout.resx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120120
<data name="richTextBoxApplication.Text" xml:space="preserve">
121-
<value>Auto Screen Capture 2.3.4.34 ("Boombayah")
121+
<value>Auto Screen Capture 2.3.4.5 ("Boombayah")
122122
Developed by Gavin Kendall (2008 - 2021)
123123

124124
SourceForge Project Site
@@ -140,6 +140,7 @@ Triggers have been rewritten. I haven't spent much time on the new wizard-style
140140
</data>
141141
<data name="richTextBoxChangelog.Text" xml:space="preserve">
142142
<value>Codename "Boombayah"
143+
2.3.4.5 "Keep screenshots for X days" trigger is now inactive by default to avoid potential data loss.
143144
2.3.4.4 Fix to Screen Capture method.
144145
2.3.4.3 Fix to Screen Capture method.
145146
2.3.4.2 Fix to Screen form for preview image.

modules/triggers/TriggerCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public bool LoadXmlFileAndAddTriggers(Config config, FileSystem fileSystem, Log
253253

254254
Trigger triggerBeforeScreenshotSavedDeleteScreenshots = new Trigger()
255255
{
256-
Active = true,
256+
Active = false,
257257
Name = $"Keep screenshots for {days} days",
258258
ConditionType = TriggerConditionType.BeforeScreenshotReferencesSaved,
259259
ActionType = TriggerActionType.DeleteScreenshots,
@@ -332,7 +332,7 @@ public bool LoadXmlFileAndAddTriggers(Config config, FileSystem fileSystem, Log
332332

333333
Trigger triggerBeforeScreenshotSavedDeleteScreenshots = new Trigger()
334334
{
335-
Active = true,
335+
Active = false,
336336
Name = "Keep screenshots for 30 days",
337337
ConditionType = TriggerConditionType.BeforeScreenshotReferencesSaved,
338338
ActionType = TriggerActionType.DeleteScreenshots,

0 commit comments

Comments
 (0)