Skip to content

Commit

Permalink
2.3.2.3 - Information Window is now Show Screen Capture Status.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinkendall committed Aug 24, 2020
1 parent 99b3040 commit 99ef246
Show file tree
Hide file tree
Showing 12 changed files with 63 additions and 52 deletions.
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.2.2")]
[assembly: AssemblyFileVersion("2.3.2.2")]
[assembly: AssemblyVersion("2.3.2.3")]
[assembly: AssemblyFileVersion("2.3.2.3")]
[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.2.2"/>
version="2.3.2.3"/>
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>True/PM</dpiAware>
Expand Down
10 changes: 5 additions & 5 deletions autoscreen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
<Compile Include="interface\FormAbout.Designer.cs">
<DependentUpon>FormAbout.cs</DependentUpon>
</Compile>
<Compile Include="interface\FormInformationWindow.cs">
<Compile Include="interface\FormScreenCaptureStatus.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="interface\FormInformationWindow.Designer.cs">
<DependentUpon>FormInformationWindow.cs</DependentUpon>
<Compile Include="interface\FormScreenCaptureStatus.Designer.cs">
<DependentUpon>FormScreenCaptureStatus.cs</DependentUpon>
</Compile>
<Compile Include="interface\FormKeyboardShortcuts.cs">
<SubType>Form</SubType>
Expand Down Expand Up @@ -269,8 +269,8 @@
<DependentUpon>FormAbout.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="interface\FormInformationWindow.resx">
<DependentUpon>FormInformationWindow.cs</DependentUpon>
<EmbeddedResource Include="interface\FormScreenCaptureStatus.resx">
<DependentUpon>FormScreenCaptureStatus.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="interface\FormKeyboardShortcuts.resx">
<DependentUpon>FormKeyboardShortcuts.cs</DependentUpon>
Expand Down
2 changes: 1 addition & 1 deletion 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="richTextBoxDeveloper.Text" xml:space="preserve">
<value>Auto Screen Capture 2.3.2.2 ("Boombayah")
<value>Auto Screen Capture 2.3.2.3 ("Boombayah")
Developed by Gavin Kendall (2008 - 2020)

https://autoscreen.sourceforge.io/
Expand Down

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

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//-----------------------------------------------------------------------
// <copyright file="FormInformationWindow.cs" company="Gavin Kendall">
// <copyright file="FormScreenCaptureStatus.cs" company="Gavin Kendall">
// Copyright (c) 2020 Gavin Kendall
// </copyright>
// <author>Gavin Kendall</author>
Expand All @@ -18,17 +18,19 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//-----------------------------------------------------------------------
using System.Drawing;
using System.Windows.Forms;

namespace AutoScreenCapture
{
public partial class FormInformationWindow : Form
/// <summary>
/// A form to show screen capture status.
/// </summary>
public partial class FormScreenCaptureStatus : Form
{
/// <summary>
/// A small fixed tool window that shows information in its title bar.
/// A small fixed tool window that shows screen capture status in its title bar.
/// </summary>
public FormInformationWindow()
public FormScreenCaptureStatus()
{
InitializeComponent();

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion interface/main/FormMain-SystemTrayIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private void ShowInfo()
}

toolStripInfo.Text = notifyIcon.Text;
_formInformationWindow.Text = notifyIcon.Text;
_formScreenCaptureStatus.Text = notifyIcon.Text;
}
catch (Exception)
{
Expand Down
60 changes: 34 additions & 26 deletions interface/main/FormMain.Designer.cs

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

16 changes: 8 additions & 8 deletions interface/main/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public partial class FormMain : Form
// The form to display when challenging the user for the passphrase in order to unlock the running screen capture session.
private FormEnterPassphrase _formEnterPassphrase = new FormEnterPassphrase();

// A small window is shown when the user selects "Information Window" from the system tray icon menu.
private FormInformationWindow _formInformationWindow = new FormInformationWindow();
// A small window is shown when the user selects "Show Screen Capture Status" from the system tray icon menu.
private FormScreenCaptureStatus _formScreenCaptureStatus = new FormScreenCaptureStatus();

// Keyboard Shortcuts
private HotKeyMap _hotKeyMap = new HotKeyMap();
Expand Down Expand Up @@ -401,20 +401,20 @@ private void toolStripMenuItemHideInterface_Click(object sender, EventArgs e)
}

/// <summary>
/// Shows a small information window.
/// Shows a small screen capture status window.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void toolStripMenuItemInformationWindow_Click(object sender, EventArgs e)
private void toolStripMenuItemScreenCaptureStatus_Click(object sender, EventArgs e)
{
if (!_formInformationWindow.Visible)
if (!_formScreenCaptureStatus.Visible)
{
_formInformationWindow.Show();
_formScreenCaptureStatus.Show();
}
else
{
_formInformationWindow.Focus();
_formInformationWindow.BringToFront();
_formScreenCaptureStatus.Focus();
_formScreenCaptureStatus.BringToFront();
}
}

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Auto Screen Capture by Gavin Kendall
Last updated on 2020-08-21 (August 21, 2020)
[The information presented here refers to the latest version of the application (which is currently 2.3.2.2)]
[The information presented here refers to the latest version of the application (which is currently 2.3.2.3)]
=============================================================================================================


Expand Down
Loading

0 comments on commit 99ef246

Please sign in to comment.