From e25e0065d3b41a3af9a2f3aad80ec47725df1a07 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Mon, 8 Oct 2018 06:34:26 -0500 Subject: [PATCH 1/4] Version 1.5.9 --- 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 addb244..8e72172 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.5.8")] -[assembly: AssemblyFileVersion("1.5.8")] +[assembly: AssemblyVersion("1.5.9")] +[assembly: AssemblyFileVersion("1.5.9")] [assembly: NeutralResourcesLanguage("en")] From 3697848b5834b9ec530fbad95aeb571443707a9e Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 9 Oct 2018 15:49:45 -0500 Subject: [PATCH 2/4] Loosened enhanced precision curves --- DS4Windows/DS4Control/Mapping.cs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/DS4Windows/DS4Control/Mapping.cs b/DS4Windows/DS4Control/Mapping.cs index c7614c5..e906861 100644 --- a/DS4Windows/DS4Control/Mapping.cs +++ b/DS4Windows/DS4Control/Mapping.cs @@ -779,28 +779,28 @@ namespace DS4Windows if (absX <= 0.4) { - outputX = 0.46 * absX; + outputX = 0.47 * absX; } else if (absX <= 0.75) { - outputX = absX - 0.216; + outputX = absX - 0.212; } else if (absX > 0.75) { - outputX = (absX * 1.8634) - 0.8634; + outputX = (absX * 1.848) - 0.848; } if (absY <= 0.4) { - outputY = 0.46 * absY; + outputY = 0.47 * absY; } else if (absY <= 0.75) { - outputY = absY - 0.216; + outputY = absY - 0.212; } else if (absY > 0.75) { - outputY = (absY * 1.8634) - 0.8634; + outputY = (absY * 1.848) - 0.848; } dState.LX = (byte)(outputX * signX * 127.5 + 127.5); @@ -839,28 +839,28 @@ namespace DS4Windows if (absX <= 0.4) { - outputX = 0.46 * absX; + outputX = 0.47 * absX; } else if (absX <= 0.75) { - outputX = absX - 0.216; + outputX = absX - 0.212; } else if (absX > 0.75) { - outputX = (absX * 1.8634) - 0.8634; + outputX = (absX * 1.848) - 0.848; } if (absY <= 0.4) { - outputY = 0.46 * absY; + outputY = 0.47 * absY; } else if (absY <= 0.75) { - outputY = absY - 0.216; + outputY = absY - 0.212; } else if (absY > 0.75) { - outputY = (absY * 1.8634) - 0.8634; + outputY = (absY * 1.848) - 0.848; } dState.RX = (byte)(outputX * signX * 127.5 + 127.5); From de5bcbc01dfeaf9a8e7fba84ad2f7fb0591def6f Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 9 Oct 2018 15:50:55 -0500 Subject: [PATCH 3/4] Updated contributors file --- contributors.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors.txt b/contributors.txt index 6a4f4f4..ad9e1d2 100644 --- a/contributors.txt +++ b/contributors.txt @@ -1,6 +1,7 @@ Travis Nickles (Ryochan7) Korney Czukowski (czukowski) jdfeng +justalemon Rajko Stojadinovic (rajkosto) Yuki-nyan From a58ee8436223dbd1dc9fc62d32f34388f0a6d767 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 9 Oct 2018 21:38:14 -0500 Subject: [PATCH 4/4] Removed alt ViGEm build link for now No longer supporting the use of ViGEm for now --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index e25f773..843ab1b 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,6 @@ website at [ds4windows.com](http://ds4windows.com). ## Downloads - **[Main builds of DS4Windows](https://github.com/Ryochan7/DS4Windows/releases)** -- Alternative builds: - - [UdpServer ViGEm build](http://ryochan7.xyz/ds4windows/test/DS4Windows_1.5.8_ViGEm_UdpServer_x64.zip) ## Requirements