Skip to content

Commit 96c3d64

Browse files
committed
2.4.1.0 - Region Select fix.
1 parent 78f8ace commit 96c3d64

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,15 @@
233233
{
234234
"Name" = "8:Microsoft Visual Studio"
235235
"ProductName" = "8:Auto Screen Capture"
236-
"ProductCode" = "8:{1EBABF2D-2D46-48EC-82BA-04DFFF5D45C1}"
237-
"PackageCode" = "8:{826BFB39-733A-4DAB-8A8A-3E4240A348F0}"
236+
"ProductCode" = "8:{55C75341-BEB6-4249-B748-4C5CC7A320E4}"
237+
"PackageCode" = "8:{24CDECE5-CA66-45B6-9FB0-DC7725146DC3}"
238238
"UpgradeCode" = "8:{6B29B7BC-0101-4495-B28C-26B6D3CDCC02}"
239239
"AspNetVersion" = "8:4.0.30319.0"
240240
"RestartWWWService" = "11:FALSE"
241241
"RemovePreviousVersions" = "11:TRUE"
242242
"DetectNewerInstalledVersion" = "11:TRUE"
243243
"InstallAllUsers" = "11:FALSE"
244-
"ProductVersion" = "8:2.4.09"
244+
"ProductVersion" = "8:2.4.10"
245245
"Manufacturer" = "8:Gavin Kendall"
246246
"ARPHELPTELEPHONE" = "8:"
247247
"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.4.0.9")]
36-
[assembly: AssemblyFileVersion("2.4.0.9")]
35+
[assembly: AssemblyVersion("2.4.1.0")]
36+
[assembly: AssemblyFileVersion("2.4.1.0")]
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.4.0.9"/>
6+
version="2.4.1.0"/>
77
<asmv3:application>
88
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
99
<dpiAware>True/PM</dpiAware>

interface/about/FormAbout.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

interface/region_select/FormRegionSelectWithMouse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private Bitmap SelectBitmap()
241241
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
242242
g.PixelOffsetMode = PixelOffsetMode.HighQuality;
243243
g.CompositingQuality = CompositingQuality.HighQuality;
244-
g.DrawImage(bitmapDestination, 0, 0, rect, GraphicsUnit.Pixel);
244+
g.DrawImage(bitmapDestination, Left, Top, rect, GraphicsUnit.Pixel);
245245
}
246246

247247
return bitmapSource;

settings/Settings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ public void Load(FileSystem fileSystem)
257257
_versionCollection.Add(new Version(CODENAME_BLADE, "2.4.0.6")); // Screen Capture Status and Screen Capture Status With Label Switcher windows have larger text, Region Select uses BitBlt capture method, Preview for Screen and Region use BitBlt capture method, Initial Capture is set as default, Region Select logs selection information to log file.
258258
_versionCollection.Add(new Version(CODENAME_BLADE, "2.4.0.7")); // Resolution Ratio implemented
259259
_versionCollection.Add(new Version(CODENAME_BLADE, "2.4.0.8")); // Region Preview fix.
260+
_versionCollection.Add(new Version(CODENAME_BLADE, "2.4.0.9"));
260261

261262
Application = new SettingCollection()
262263
{

0 commit comments

Comments
 (0)