Skip to content

Commit

Permalink
2.3.7.0 - Attempting to fix bug with region select not working on mul…
Browse files Browse the repository at this point in the history
…tiple displays.
  • Loading branch information
gavinkendall committed Dec 8, 2021
1 parent 16adf00 commit 234af88
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18 deletions.
6 changes: 3 additions & 3 deletions AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -244,15 +244,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Auto Screen Capture"
"ProductCode" = "8:{64BC79F6-9838-4D6E-AD76-3D2CB74F72A7}"
"PackageCode" = "8:{68F4F087-E3B6-4592-894F-953DF4788D5A}"
"ProductCode" = "8:{0B2F3414-DC4A-46CE-8F36-67559FC035BC}"
"PackageCode" = "8:{90E05177-1116-4DA3-A6B4-53D6CCEAB0F4}"
"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.69"
"ProductVersion" = "8:2.3.70"
"Manufacturer" = "8:Gavin Kendall"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://sourceforge.net/p/autoscreen/tickets/"
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.9")]
[assembly: AssemblyFileVersion("2.3.6.9")]
[assembly: AssemblyVersion("2.3.7.0")]
[assembly: AssemblyFileVersion("2.3.7.0")]
[assembly: NeutralResourcesLanguageAttribute("en-CA")]
2 changes: 1 addition & 1 deletion app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<assemblyIdentity
type="win32"
name="GavinKendall.AutoScreenCapture"
version="2.3.6.9"/>
version="2.3.7.0"/>
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>True/PM</dpiAware>
Expand Down
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Auto Screen Capture by Gavin Kendall


Codename "Boombayah"
2.3.7.0 Attempting to fix bug with region select not working on multiple displays.
2.3.6.9 Maybe fixed the bug with region select not working on multiple displays. Maybe. I haven't had multiple displays to test this properly for myself due to working from a laptop since March 2020.
2.3.6.8 Fixed bug with "the handle is invalid" to prevent application from crashing when Windows is locked. The check on the invalid handle was accidentally removed in 2.3.4.1 but has now been restored.
2.3.6.7 Fixed bug with emailing screenshots from a one time schedule.
Expand Down
7 changes: 4 additions & 3 deletions interface/FormAbout.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="richTextBoxApplication.Text" xml:space="preserve">
<value>Auto Screen Capture 2.3.6.9 ("Boombayah")
<value>Auto Screen Capture 2.3.7.0 ("Boombayah")
Developed by Gavin Kendall (2008 - 2021)

SourceForge Project Site
Expand All @@ -128,12 +128,13 @@ GitHub Project Site
https://github.com/gavinkendall/autoscreen/</value>
</data>
<data name="richTextBoxReleaseNotes.Text" xml:space="preserve">
<value>2.3.6.9
<value>2.3.7.0

Maybe fixed the bug with region select not working on multiple displays. Maybe. I haven't had multiple displays to test this properly for myself due to working from a laptop since March 2020.</value>
Attempting to fix bug with region select not working on multiple displays.</value>
</data>
<data name="richTextBoxChangelog.Text" xml:space="preserve">
<value>Codename "Boombayah"
2.3.7.0 Attempting to fix bug with region select not working on multiple displays.
2.3.6.9 Maybe fixed the bug with region select not working on multiple displays. Maybe. I haven't had multiple displays to test this properly for myself due to working from a laptop since March 2020.
2.3.6.8 Fixed bug with "the handle is invalid" to prevent application from crashing when Windows is locked. The check on the invalid handle was accidentally removed in 2.3.4.1 but has now been restored.
2.3.6.7 Fixed bug with emailing screenshots from a one time schedule.
Expand Down
4 changes: 2 additions & 2 deletions interface/FormRegionSelectWithMouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ public void LoadCanvas()

_bitmapSource = new Bitmap(width, height);

Graphics graphics = Graphics.FromImage(_bitmapSource as Image);
graphics.CopyFromScreen(Top, Left, Top, Left, _bitmapSource.Size);
Graphics graphics = Graphics.FromImage(_bitmapSource);
graphics.CopyFromScreen(0, 0, 0, 0, _bitmapSource.Size, CopyPixelOperation.SourceCopy);

using (MemoryStream s = new MemoryStream())
{
Expand Down
7 changes: 0 additions & 7 deletions interface/main/FormMain-Screens.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,6 @@ private void RunScreenCaptures()
{
try
{
if (_formScreen.ScreenCollection.Count == 0)
{
_log.WriteErrorMessage("The screen collection is empty and needs to be initialized");

return;
}

foreach (Screen screen in _formScreen.ScreenCollection)
{
if (screen.Active)
Expand Down

0 comments on commit 234af88

Please sign in to comment.