mirror of
https://github.com/4yn/slidershim.git
synced 2025-02-25 22:08:47 +01:00
update readme and bump version
This commit is contained in:
parent
748a76cf06
commit
8c96763a8a
14
README.md
14
README.md
@ -12,6 +12,10 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
- v0.2.3
|
||||||
|
- Fix first and last buttons not working with brokenithm
|
||||||
|
- Add option to disable air strings for controllers
|
||||||
|
- Add option to slow down lighting updates
|
||||||
- v0.2.2
|
- v0.2.2
|
||||||
- Retcon serial slider name
|
- Retcon serial slider name
|
||||||
- Fix crash on some systems due to time math
|
- Fix crash on some systems due to time math
|
||||||
@ -28,7 +32,7 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
|
|||||||
## Setup Instructions
|
## Setup Instructions
|
||||||
|
|
||||||
1. [Download here](https://github.com/4yn/slidershim/releases/latest)
|
1. [Download here](https://github.com/4yn/slidershim/releases/latest)
|
||||||
2. Extract to any location you like.
|
2. Run the msi installer (recommended for first run) or extract zip to any location you like.
|
||||||
3. Run `slidershim.exe`.
|
3. Run `slidershim.exe`.
|
||||||
4. Pick your input device, output method and preferred lighting.
|
4. Pick your input device, output method and preferred lighting.
|
||||||
5. Click apply.
|
5. Click apply.
|
||||||
@ -46,6 +50,7 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
|
|||||||
|
|
||||||
1. Set the device option to "Brokenithm" and apply.
|
1. Set the device option to "Brokenithm" and apply.
|
||||||
2. Allow firewall access to `slidershim.exe`
|
2. Allow firewall access to `slidershim.exe`
|
||||||
|
> For more info on setting up firewall, check out [instructions at brokenithm-kb](https://github.com/4yn/brokenithm-kb#setup)
|
||||||
3. Connect a touch device to the same wifi or local network as your windows machine
|
3. Connect a touch device to the same wifi or local network as your windows machine
|
||||||
> Windows hotspot works too, but make sure to give "public" firewall access
|
> Windows hotspot works too, but make sure to give "public" firewall access
|
||||||
4. Open the web controller in your tablet device web browser. One of the links should work.
|
4. Open the web controller in your tablet device web browser. One of the links should work.
|
||||||
@ -61,6 +66,13 @@ Voltex layout disables air tower, Neardayo layout enables air tower.
|
|||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>slidershim crashes when I am running it for the first time</strong></summary>
|
||||||
|
|
||||||
|
- Use the .msi installer file instead of the .zip. You may be missing some windows addons that the installer will take care of (specifically Edge WebView).
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary><strong>My controller is not recognised</strong></summary>
|
<summary><strong>My controller is not recognised</strong></summary>
|
||||||
|
|
||||||
|
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@ -3057,7 +3057,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "slidershim"
|
name = "slidershim"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"log",
|
"log",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "slidershim"
|
name = "slidershim"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
description = "slidershim"
|
description = "slidershim"
|
||||||
authors = ["4yn"]
|
authors = ["4yn"]
|
||||||
license = ""
|
license = ""
|
||||||
|
@ -2,13 +2,17 @@
|
|||||||
___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___
|
___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___
|
||||||
/ __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \
|
/ __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \
|
||||||
\__ \ | | (_| | __/ | \__ \ | | | | | | | | |
|
\__ \ | | (_| | __/ | \__ \ | | | | | | | | |
|
||||||
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.2
|
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.3
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
https://github.com/4yn/slidershim
|
https://github.com/4yn/slidershim
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
- v0.2.3
|
||||||
|
- Fix first and last buttons not working with brokenithm
|
||||||
|
- Add option to disable air strings for controllers
|
||||||
|
- Add option to slow down lighting updates
|
||||||
- v0.2.2
|
- v0.2.2
|
||||||
- Retcon serial slider name
|
- Retcon serial slider name
|
||||||
- Fix crash on some systems due to time math
|
- Fix crash on some systems due to time math
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "slidershim",
|
"productName": "slidershim",
|
||||||
"version": "0.2.2"
|
"version": "0.2.3"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"distDir": "../public",
|
"distDir": "../public",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user