From 4c0a7c8d62f9700ab33e5f8c551ca3a6ce686e10 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 22 Oct 2019 01:23:41 -0500 Subject: [PATCH 1/3] Fixed Start Minimize and Minimize to Taskbar conflict Related to issue #861 --- DS4Windows/DS4Forms/DS4Form.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index f0eec36..b3348f1 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -397,12 +397,6 @@ namespace DS4Windows.Forms } } - Form_Resize(null, null); - if (!(StartMinimized || mini)) - { - Show(); - } - this.Resize += Form_Resize; this.LocationChanged += TrackLocationChanged; @@ -465,6 +459,9 @@ namespace DS4Windows.Forms timerThread.IsBackground = true; timerThread.Priority = ThreadPriority.Lowest; timerThread.Start(); + + // Have Form_Resize run to honor minimize setting + Show(); } private void TBUdpListenAddress_Leave(object sender, EventArgs e) From bc377acfd474f2b21555fc2f78a48ea1d939b1c0 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 22 Oct 2019 02:12:50 -0500 Subject: [PATCH 2/3] Updated newest file --- DS4Windows/newest.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS4Windows/newest.txt b/DS4Windows/newest.txt index df1b094..ae6ddf7 100644 --- a/DS4Windows/newest.txt +++ b/DS4Windows/newest.txt @@ -1 +1 @@ -1.7.18 +1.7.19 From b38f37b525a2a0b54f6dfdbdccc7894f6d77fbe0 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 22 Oct 2019 02:13:37 -0500 Subject: [PATCH 3/3] Version 1.7.19 --- DS4Windows/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/Properties/AssemblyInfo.cs b/DS4Windows/Properties/AssemblyInfo.cs index 95c8b2a..3c26eb8 100644 --- a/DS4Windows/Properties/AssemblyInfo.cs +++ b/DS4Windows/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ using System.Runtime.InteropServices; // 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.7.18")] -[assembly: AssemblyFileVersion("1.7.18")] +[assembly: AssemblyVersion("1.7.19")] +[assembly: AssemblyFileVersion("1.7.19")] [assembly: NeutralResourcesLanguage("en")]