Skip to content

Commit

Permalink
Version 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed May 24, 2021
1 parent a9dc0c9 commit dbab82d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@
- **12th of September, 2018**: Completely new versatile layout system, rendering modes on a per key basis, improved performance.
- **27th of December, 2018**: Variable layout size, variable layout border offset size, support for the right shift key, several other bug fixes, improved dialogs.
- **5th of February, 2019**: Changeable key name, periodic stats saving, separate track all options for keys and mouse buttons, some bug fixes.
- **27th of August, 2020**: Windows style file chooser, prevent loading non-existent config files, force quoting for cli config passing, fix background transparency not being applied to non-panel areas, general aesthetic and internal improvements.
- **27th of August, 2020**: Windows style file chooser, prevent loading non-existent config files, force quoting for cli config passing, fix background transparency not being applied to non-panel areas, general aesthetic and internal improvements.
- **24th of May, 2021**: sub-pixel rendering, save/load statistics on exit/launch, jnativehook update, Java 16 compatibility fix, fix incorrect fill color border offset, prevent ESC from closing dialogs, enable the config save button by default.
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.3'//Don't forget Main.java
version = 'v8.4'//Don't forget Main.java
shadowJar.archiveName = 'KeysPerSecond-' + project.version + '.jar'

repositories{
Expand Down
2 changes: 1 addition & 1 deletion KeysPerSecond/src/me/roan/kps/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ public Component getListCellRendererComponent(JList<?> list, Object value, int i
Statistics.configureAutoSave(false);
});
JPanel info = new JPanel(new GridLayout(2, 1, 0, 2));
info.add(Util.getVersionLabel("KeysPerSecond", "v8.3"));//XXX the version number - don't forget build.gradle
info.add(Util.getVersionLabel("KeysPerSecond", "v8.4"));//XXX the version number - don't forget build.gradle
JPanel links = new JPanel(new GridLayout(1, 2, -2, 0));
JLabel forum = new JLabel("<html><font color=blue><u>Forums</u></font> -</html>", SwingConstants.RIGHT);
JLabel git = new JLabel("<html>- <font color=blue><u>GitHub</u></font></html>", SwingConstants.LEFT);
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ It's kinda empty here right now :c, so please suggest things c:
## Downloads
_Requires Java 8 or higher_
_Tested operating systems: Mac 10.11.6, Ubuntu Linux 16.04 LTS, Windows 7 & 8 & 10_
- [Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.3/KeysPerSecond-v8.3.exe)
- [Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.3/KeysPerSecond-v8.3.jar)
- [Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.4/KeysPerSecond-v8.4.exe)
- [Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.4/KeysPerSecond-v8.4.jar)

All releases: [releases](https://github.com/RoanH/KeysPerSecond/releases)
GitHub repository: [here](https://github.com/RoanH/KeysPerSecond)
Expand Down

0 comments on commit dbab82d

Please sign in to comment.