From 2a4176d6489a7593c93f63d0e4f23e326dc80195 Mon Sep 17 00:00:00 2001 From: Roan Hofland Date: Fri, 26 Aug 2022 17:14:59 +0200 Subject: [PATCH] Version 8.7 --- CHANGELOG.md | 7 +++++++ KeysPerSecond/build.gradle | 2 +- KeysPerSecond/src/dev/roanh/kps/Main.java | 2 +- README.md | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75b59209..1dd971b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Updates All releases can be found on the [releases page](https://github.com/RoanH/KeysPerSecond/releases). +## [v8.7] 26th of August, 2022: Some Fixes +- Fix a file open dialog being shown on Mac and Linux when trying to save a configuration ([#61](https://github.com/RoanH/KeysPerSecond/issues/61) and [#67](https://github.com/RoanH/KeysPerSecond/issues/67)) +- Fix loading mouse buttons from a configuration not working ([#63](https://github.com/RoanH/KeysPerSecond/issues/63)) +- Fix incorrect square bracket detection ([#60](https://github.com/RoanH/KeysPerSecond/issues/60)) +- Fix the file chooser on Mac and Linux not following the general OS style +- Fix a rare exception when configuring the layout ([#59](https://github.com/RoanH/KeysPerSecond/issues/59)) + ## [v8.6] 9th of June, 2022: Fix Statistics Saving - Fix statistics saving and loading being being broken ([#51](https://github.com/RoanH/KeysPerSecond/issues/51) and [#57](https://github.com/RoanH/KeysPerSecond/issues/57)). - Implement a new text based statistics saving format (meaning you can manually edit key counts if you want). diff --git a/KeysPerSecond/build.gradle b/KeysPerSecond/build.gradle index 709f0e9b..1f19b59f 100644 --- a/KeysPerSecond/build.gradle +++ b/KeysPerSecond/build.gradle @@ -23,7 +23,7 @@ javadoc{ compileJava.options.encoding = 'UTF-8' sourceCompatibility = 1.8 -version = 'v8.6'//Don't forget Main.java +version = 'v8.7'//Don't forget Main.java shadowJar.archiveName = 'KeysPerSecond-' + project.version + '.jar' repositories{ diff --git a/KeysPerSecond/src/dev/roanh/kps/Main.java b/KeysPerSecond/src/dev/roanh/kps/Main.java index 1197d261..247bde1a 100644 --- a/KeysPerSecond/src/dev/roanh/kps/Main.java +++ b/KeysPerSecond/src/dev/roanh/kps/Main.java @@ -122,7 +122,7 @@ public class Main{ /** * String holding the version of the program. */ - public static final String VERSION = "v8.6";//XXX the version number - don't forget build.gradle + public static final String VERSION = "v8.7";//XXX the version number - don't forget build.gradle /** * The number of seconds the average has * been calculated for diff --git a/README.md b/README.md index 8391ca85..13fab3ec 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ And if you find any bugs feel free to report them. If you have any features you' ## Downloads _Requires Java 8 or higher_ _Tested operating systems: Mac 10.11.6 & M1, Ubuntu Linux 16.04 LTS, Windows 7 & 8 & 10 & 11_ -- [Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.6/KeysPerSecond-v8.6.exe) -- [Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.6/KeysPerSecond-v8.6.jar) +- [Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.7/KeysPerSecond-v8.7.exe) +- [Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.7/KeysPerSecond-v8.7.jar) All releases: [releases](https://github.com/RoanH/KeysPerSecond/releases) GitHub repository: [here](https://github.com/RoanH/KeysPerSecond)