From b64677db3fd8d0098dd65e7a6ea227a361bdc716 Mon Sep 17 00:00:00 2001 From: KeyPuncher Date: Tue, 27 Feb 2018 16:36:42 -0800 Subject: [PATCH 1/4] Update ReadMe.txt Added 3.2 version change log --- WiinUSoft/ReadMe.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/WiinUSoft/ReadMe.txt b/WiinUSoft/ReadMe.txt index 9a0fd4a..2999d02 100644 --- a/WiinUSoft/ReadMe.txt +++ b/WiinUSoft/ReadMe.txt @@ -1,5 +1,5 @@ ====================== -WiinUSoft 3.1 +WiinUSoft 3.2 ====================== WiinUSoft is a program that allows you to use your Nintendo @@ -41,6 +41,12 @@ Supported Controllers Change Log ====================== + = version 3.2 = + - Fixed Selection of Microsoft BT Stack option + - Fixed Windows 10 detection + - Fixed auto connect and auto refresh issues + - Displaying lost connection message as a tray balloon instead of a popup + = version 3.1 = - Added option for changing the Wiimote's IR pointer off screen behavior - Various crash fixes @@ -87,4 +93,4 @@ Change Log - HORI Battle Pad tested and works fully = version 1.0 = - - First Release \ No newline at end of file + - First Release From a8068fed93cd9c5c5471b6010a6fe623e5e73981 Mon Sep 17 00:00:00 2001 From: KeyPuncher Date: Sat, 21 Jul 2018 14:46:13 -0700 Subject: [PATCH 2/4] Create LICENSE.txt --- LICENSE.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6d2577a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,22 @@ +Microsoft Public License (MS-PL) + +This license governs use of the accompanying software. If you use the software, you +accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the +same meaning here as under U.S. copyright law. +A "contribution" is the original software, or any additions or changes to the software. +A "contributor" is any person that distributes its contribution under this license. +"Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights +(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. +(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations +(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. +(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. +(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. +(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. +(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. From b3fcb4ff50963d6e054b2139cf3d6dfd30a80d5e Mon Sep 17 00:00:00 2001 From: Justin Keys Date: Sun, 7 Oct 2018 13:18:40 -0700 Subject: [PATCH 3/4] Surpressing native exception. (GitHub Issue #17) --- WiinUSoft/App.xaml.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/WiinUSoft/App.xaml.cs b/WiinUSoft/App.xaml.cs index d77ce20..3734a0b 100644 --- a/WiinUSoft/App.xaml.cs +++ b/WiinUSoft/App.xaml.cs @@ -12,6 +12,7 @@ public partial class App : Application, ISingleInstanceApp { internal const string PROFILE_FILTER = "WiinUSoft Profile|*.wsp"; private const string Unique = "wiinupro-or-wiinusoft-instance"; + private const string NATIVE_OVERLAPPED = "NaitiveOverlapped"; [STAThread] public static void Main() @@ -32,6 +33,11 @@ public static void Main() static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs args) { Exception e = (Exception)args.ExceptionObject; + + // Ignore this native code exception. + // Can't handle it, and it doesn't seem to have any negative effects. + if (e.StackTrace.Contains(NATIVE_OVERLAPPED)) + return; SingleInstance.Cleanup(); Current.Dispatcher.Invoke(new Action(() => From aaecd55356960053f982087c0847e7014469ef3b Mon Sep 17 00:00:00 2001 From: Justin Keys Date: Sun, 7 Oct 2018 14:28:04 -0700 Subject: [PATCH 4/4] Updating assembly and installer --- Installers/wiinusoft_installer.iss | 2 +- WiinUSoft/Properties/AssemblyInfo.cs | 6 +++--- WiinUSoft/ReadMe.txt | 5 ++++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Installers/wiinusoft_installer.iss b/Installers/wiinusoft_installer.iss index c8d2ea0..189afa5 100644 --- a/Installers/wiinusoft_installer.iss +++ b/Installers/wiinusoft_installer.iss @@ -1,5 +1,5 @@ #define MyAppName "WiinUSoft" -#define MyAppVersion "3.0" +#define MyAppVersion "3.3" #define MyAppPublisher "Justin Keys" #define MyAppURL "http://www.wiinupro.com/" #define MyAppExeName "WiinUSoft.exe" diff --git a/WiinUSoft/Properties/AssemblyInfo.cs b/WiinUSoft/Properties/AssemblyInfo.cs index edbad1f..41824c3 100644 --- a/WiinUSoft/Properties/AssemblyInfo.cs +++ b/WiinUSoft/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("WiinUSoft")] -[assembly: AssemblyCopyright("Copyright © 2014 - 2017")] +[assembly: AssemblyCopyright("Copyright © 2014 - 2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -49,5 +49,5 @@ // 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("3.3.1.560")] -[assembly: AssemblyFileVersion("3.3.1.560")] +[assembly: AssemblyVersion("3.3.1.390")] +[assembly: AssemblyFileVersion("3.3.1.390")] diff --git a/WiinUSoft/ReadMe.txt b/WiinUSoft/ReadMe.txt index 2999d02..5154782 100644 --- a/WiinUSoft/ReadMe.txt +++ b/WiinUSoft/ReadMe.txt @@ -1,5 +1,5 @@ ====================== -WiinUSoft 3.2 +WiinUSoft 3.3 ====================== WiinUSoft is a program that allows you to use your Nintendo @@ -41,6 +41,9 @@ Supported Controllers Change Log ====================== + = version 3.3 = + - Surpressing native exception + = version 3.2 = - Fixed Selection of Microsoft BT Stack option - Fixed Windows 10 detection