diff --git a/README.md b/README.md index d8f7c75..cb4c197 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,19 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni ## Changelog +- v0.6.1 + - Fix timer speed toggle for reactive layout and umgr WS - v0.6.0 - Support Laverita v3. Thanks @sr1canskhsia - v0.5.1 - Support SSL/wss if brokenithm used with tunnelling. Thanks @kokarare1212 - v0.5.0 - Support for Yubideck 3.0 firmware + +
+ +Older changelog + - v0.4.3 - Make Yubideck USB reports more flexible when reading data - v0.4.2 @@ -28,11 +35,6 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni - v0.4.0 - Add DirectInput keyboard emulation using [oblitum/Interception](https://github.com/oblitum/Interception) - Add slide LED support for some controllers - -
- -Older changelog - - v0.3.1 - Fix wrong key in UMIGURI keyboard layout - v0.3.0 @@ -87,6 +89,7 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni - Less resources are used when the configuration window is hidden. - Un-hide the configuration window from the system tray. - For gamepad output, you will need to install [ViGEmBus](https://github.com/ViGEm/ViGEmBus/releases/latest) for it to work. +- For keyboard output, keyboard emulation is achieved via SendKeys or DirectInput. SendKeys will work out of the box but some games may not detect it. For other games, DirectInput may work but you will need to install the [Interception](https://github.com/oblitum/Interception/releases/tag/v1.0.1) driver first. - For serial LED input, you may need to install [com0com](https://sourceforge.net/projects/com0com/files/com0com/2.2.2.0/) to bridge slidershim with the LED data stream. ### Brokenithm Setup diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index e915a00..77dc3a9 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "slidershim" -version = "0.6.0" +version = "0.6.1" dependencies = [ "env_logger", "log", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b0af73f..5a187db 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slidershim" -version = "0.6.0" +version = "0.6.1" description = "slidershim" authors = ["4yn"] license = "" diff --git a/src-tauri/README.txt b/src-tauri/README.txt index d2a0406..ed4d15a 100644 --- a/src-tauri/README.txt +++ b/src-tauri/README.txt @@ -9,6 +9,8 @@ https://github.com/4yn/slidershim # Changelog +- v0.6.1 + - Fix timer speed toggle for reactive layout and umgr WS - v0.6.0 - Support Laverita v3. Thanks @sr1canskhsia - v0.5.1 diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 221ad5b..256ad92 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "slidershim", - "version": "0.6.0" + "version": "0.6.1" }, "build": { "distDir": "../public",