Skip to content

Commit 9418a76

Browse files
2.1.7.7 - Bug fix. Region wasn't saving the new macro that the user was changing from the initial value.
1 parent 92611c4 commit 9418a76

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
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.1.7.6")]
36-
[assembly: AssemblyFileVersion("2.1.7.6")]
35+
[assembly: AssemblyVersion("2.1.7.7")]
36+
[assembly: AssemblyFileVersion("2.1.7.7")]
3737
[assembly: NeutralResourcesLanguageAttribute("en-CA")]

Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void Initialize()
2222
Directory.CreateDirectory(FileSystem.SettingsFolder);
2323

2424
Application.Add(new Setting("Name", "Auto Screen Capture"));
25-
Application.Add(new Setting("Version", "2.1.7.6"));
25+
Application.Add(new Setting("Version", "2.1.7.7"));
2626
Application.Add(new Setting("DebugMode", true));
2727
Application.Save();
2828

app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
<applicationSettings>
200200
<AutoScreenCapture.Properties.Settings>
201201
<setting name="ApplicationVersion" serializeAs="String">
202-
<value>2.1.7.6</value>
202+
<value>2.1.7.7</value>
203203
</setting>
204204
<setting name="ApplicationName" serializeAs="String">
205205
<value>Auto Screen Capture</value>

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.1.7.6"/>
6+
version="2.1.7.7"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

modules/region/FormRegion.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ private void ChangeRegion()
106106
else
107107
{
108108
RegionCollection.Get(RegionObject).Name = textBoxRegionName.Text;
109+
RegionCollection.Get(RegionObject).Macro = textBoxRegionMacro.Text;
109110
RegionCollection.Get(RegionObject).X = (int)numericUpDownRegionX.Value;
110111
RegionCollection.Get(RegionObject).Y = (int)numericUpDownRegionY.Value;
111112
RegionCollection.Get(RegionObject).Width = (int)numericUpDownRegionWidth.Value;

0 commit comments

Comments
 (0)