Skip to content

Commit

Permalink
Version 1.17.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
audiamus committed May 9, 2021
1 parent d0e975d commit f561282
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ AAX Audio Converter is configured to support high DPI monitors under Windows 10.
## Download
Windows setup package version 1.17, English and German, with manuals, plus FFmpeg executable:

**[AaxAudioConverter-1.17-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17/AaxAudioConverter-1.17-Setup.exe)**
**[AaxAudioConverter-1.17.0.1-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter-1.17.0.1-Setup.exe)**

Manuals (also included in the setup package):

**[English](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17/AaxAudioConverter.pdf)**
**[English](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter.pdf)**

**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17/AaxAudioConverter.de.pdf)**
**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter.de.pdf)**


## Dependencies
Expand Down
4 changes: 2 additions & 2 deletions res/Setup.dat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17/AaxAudioConverter-1.17-Setup.exe
MD5: c32a5f6fc4fb18f563577a27ba7c9a4b
https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter-1.17.0.1-Setup.exe
MD5: a2cecfee6e20df138563e3ef7876bb55
10 changes: 5 additions & 5 deletions src/AaxAudioConverter/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public partial class MainForm : Form {
private readonly ProgressProcessor _progress;
private readonly InteractionCallbackHandler<EInteractionCustomCallback> _interactionHandler;
private readonly SystemMenu _systemMenu;
private readonly Timer _resizeTimer;
private readonly Timer _resizeTimer = new Timer ();

private readonly PerformanceMonitor _perfMonitor;
private readonly PerformanceHandler _perfHandler;
Expand Down Expand Up @@ -68,7 +68,8 @@ public partial class MainForm : Form {
#region Public Constructors

public MainForm () {
InitializeComponent ();
using (new ResourceGuard (x => _resizeFlag = x))
InitializeComponent ();

Log (1, this, () => $"{ApplName} {AssemblyVersion} as {(Is64BitProcess ? "64" : "32")}bit process on Windows {OSVersion} {(Is64BitOperatingSystem ? "64" : "32")}bit");

Expand Down Expand Up @@ -106,7 +107,6 @@ public MainForm () {
_perfProgress = new Progress<IPerfCallback> (_perfHandler.Update);
_perfMonitor = new PerformanceMonitor { Callback = _perfProgress.Report };

_resizeTimer = new Timer ();
_resizeTimer.Tick += resizeTimer_Tick;
_resizeTimer.Interval = 100;
}
Expand Down Expand Up @@ -1020,10 +1020,10 @@ private void lblSaveTo_SizeChanged (object sender, EventArgs e) {
private void listViewAaxFiles_SizeChanged (object sender, EventArgs e) {
if (_fileItems.Count > 0)
return;
_resizeTimer.Stop ();
_resizeTimer?.Stop ();
if (_resizeFlag)
return;
_resizeTimer.Start ();
_resizeTimer?.Start ();
}

private void resizeTimer_Tick (object sender, EventArgs e) {
Expand Down
4 changes: 2 additions & 2 deletions src/AaxAudioConverter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// 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 ("1.17.0.0")]
[assembly: AssemblyFileVersion ("1.17.0.0")]
[assembly: AssemblyVersion ("1.17.0.1")]
[assembly: AssemblyFileVersion ("1.17.0.1")]
[assembly: NeutralResourcesLanguage ("en")]

2 changes: 1 addition & 1 deletion src/InnoSetup/AaxAudioConverter setup.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppSetupName 'AAX Audio Converter'
#define MyAppVersion '1.17'
#define MyAppVersion '1.17.0.1'
#define MyProgramExe = 'AaxAudioConverter.exe'
#define MyCompany = 'audiamus'
#define MyAppName = 'AaxAudioConverter'
Expand Down

0 comments on commit f561282

Please sign in to comment.