Skip to content

Commit

Permalink
Version 8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Aug 26, 2022
1 parent 7a6bd98 commit 2a4176d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion KeysPerSecond/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion KeysPerSecond/src/dev/roanh/kps/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2a4176d

Please sign in to comment.