From f56f72e9c379e6fc5a3dcf322f8432211bb71997 Mon Sep 17 00:00:00 2001 From: Roan Date: Tue, 5 Feb 2019 21:30:39 +0100 Subject: [PATCH] Version 8.2 --- CHANGELOG.md | 3 ++- KeysPerSecond/src/me/roan/kps/Main.java | 4 ++-- README.md | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f665e255..3036d103 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,4 +36,5 @@ - **2 June 2018**: Fix the arrow keys displaying rather broken.
- **3 June 2018**: Switch to arrow symbols with better availability, fix configuration position saving and UTF-8 support, add GitHub link to the initialisation dialog. - **12 September 2018**: Completely new versatible layout system, rendering modes on a per key basis, improved performance. -- **27 December 2018**: Variable layout size, variable layout border offset size, support for the right shift key, several other bug fixes, improved dialogs. \ No newline at end of file +- **27 December 2018**: Variable layout size, variable layout border offset size, support for the right shift key, several other bug fixes, improved dialogs. +- **5 February 2019**: Changable key name, periodic stats saving, separate track all options for keys and mouse buttons, some bug fixes. \ No newline at end of file diff --git a/KeysPerSecond/src/me/roan/kps/Main.java b/KeysPerSecond/src/me/roan/kps/Main.java index 12d4c30c..e4e8b24d 100644 --- a/KeysPerSecond/src/me/roan/kps/Main.java +++ b/KeysPerSecond/src/me/roan/kps/Main.java @@ -809,11 +809,11 @@ public Component getListCellRendererComponent(JList list, Object value, int i save.setEnabled(true); }); JPanel info = new JPanel(new GridLayout(2, 1, 0, 2)); - JLabel ver = new JLabel("
Version: v8.1, latest version: loading
", SwingConstants.CENTER); + JLabel ver = new JLabel("
Version: v8.2, latest version: loading
", SwingConstants.CENTER); info.add(ver); new Thread(()->{ String version = checkVersion();//XXX the version number - ver.setText("
Version: v8.1, latest version: " + (version == null ? "unknown :(" : version) + "
"); + ver.setText("
Version: v8.2, latest version: " + (version == null ? "unknown :(" : version) + "
"); }, "Version Checker").start(); JPanel links = new JPanel(new GridLayout(1, 2, -2, 0)); JLabel forum = new JLabel("Forums -", SwingConstants.RIGHT); diff --git a/README.md b/README.md index 2bbf5d86..3d8f4012 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ For each configured key the program will show how many times it was pressed. By When enabled it can also show a graph of the number of keys pressed per second over time and total number of keys pressed. Everything shown in the pictures above can be toggled on or off and all the panels can be arranged in a lot of different ways. -![Config](https://i.imgur.com/R7Ihx1H.png) ![Key config](https://i.imgur.com/yeUavBb.png) +![Config](https://i.imgur.com/QcEm7Og.png) ![Key config](https://i.imgur.com/Zjuc7Na.png) ![Layout](https://i.imgur.com/w61exGO.png) There are also some commands that can be sent to the program: @@ -50,8 +50,8 @@ It's kinda empty here right now :c, so please suggest things c: ## Downloads (Java 8 required) Supported operating systems: Mac (tested 10.11.6), Linux (tested Ubuntu 16.04 LTS) & Windows (tested 7, 8 & 10) -[Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.1/KeysPerSecond-v8.1.exe) -[Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.1/KeysPerSecond-v8.1.jar) +[Windows executable](https://github.com/RoanH/KeysPerSecond/releases/download/v8.2/KeysPerSecond-v8.2.exe) +[Runnable Java Archive](https://github.com/RoanH/KeysPerSecond/releases/download/v8.2/KeysPerSecond-v8.2.jar) All releases: [releases](https://github.com/RoanH/KeysPerSecond/releases) GitHub repository: [here](https://github.com/RoanH/KeysPerSecond)