Skip to content

Commit

Permalink
2.4.0.2 - Region Select fix and Interval section added to Schedule form.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinkendall committed Feb 3, 2022
1 parent f9568a2 commit 916db80
Show file tree
Hide file tree
Showing 9 changed files with 3,320 additions and 791 deletions.
6 changes: 3 additions & 3 deletions AutoScreenCaptureSetup/AutoScreenCaptureSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Auto Screen Capture"
"ProductCode" = "8:{EA10CD93-8618-4F7F-83A0-0BCF6D8DD79A}"
"PackageCode" = "8:{6311295D-053F-4AC6-8CF5-58AFC0C04F61}"
"ProductCode" = "8:{D06FA6DB-6096-402D-9416-E5FE5AAECC07}"
"PackageCode" = "8:{3039136F-1503-4E94-AEDD-7237CB6CF1F2}"
"UpgradeCode" = "8:{6B29B7BC-0101-4495-B28C-26B6D3CDCC02}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:2.4.01"
"ProductVersion" = "8:2.4.02"
"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.4.0.1")]
[assembly: AssemblyFileVersion("2.4.0.1")]
[assembly: AssemblyVersion("2.4.0.2")]
[assembly: AssemblyFileVersion("2.4.0.2")]
[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.4.0.1"/>
version="2.4.0.2"/>
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>True/PM</dpiAware>
Expand Down
3,969 changes: 3,225 additions & 744 deletions help/help-7.rtf

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion interface/about/FormAbout.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion interface/region_select/FormRegionSelectWithMouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void LoadCanvas(bool sendToClipboard)

using (Graphics graphics = Graphics.FromImage(_bitmapSource))
{
graphics.CopyFromScreen(0, 0, 0, 0, _bitmapSource.Size, CopyPixelOperation.SourceCopy);
graphics.CopyFromScreen(0, 0, 0, 0, _bitmapSource.Size);

using (MemoryStream s = new MemoryStream())
{
Expand Down
119 changes: 83 additions & 36 deletions interface/schedule/FormSchedule.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions interface/schedule/FormSchedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void FormSchedule_Load(object sender, EventArgs e)
dateTimePickerStartAt.Enabled = false;
labelAnd.Enabled = false;
dateTimePickerStopAt.Enabled = false;
labelInterval.Enabled = false;
groupBoxInterval.Enabled = false;
numericUpDownHoursInterval.Enabled = false;
numericUpDownMinutesInterval.Enabled = false;
numericUpDownSecondsInterval.Enabled = false;
Expand Down Expand Up @@ -364,7 +364,7 @@ private void radioButtonOneTime_CheckedChanged(object sender, EventArgs e)
dateTimePickerStartAt.Enabled = false;
labelAnd.Enabled = false;
dateTimePickerStopAt.Enabled = false;
labelInterval.Enabled = false;
groupBoxInterval.Enabled = false;
numericUpDownHoursInterval.Enabled = false;
numericUpDownMinutesInterval.Enabled = false;
numericUpDownSecondsInterval.Enabled = false;
Expand All @@ -383,7 +383,7 @@ private void radioButtonPeriod_CheckedChanged(object sender, EventArgs e)
dateTimePickerStartAt.Enabled = true;
labelAnd.Enabled = true;
dateTimePickerStopAt.Enabled = true;
labelInterval.Enabled = true;
groupBoxInterval.Enabled = true;
numericUpDownHoursInterval.Enabled = true;
numericUpDownMinutesInterval.Enabled = true;
numericUpDownSecondsInterval.Enabled = true;
Expand Down
Loading

0 comments on commit 916db80

Please sign in to comment.