1
0
mirror of https://github.com/4yn/slidershim.git synced 2025-02-20 04:01:04 +01:00

update readme and bump version

This commit is contained in:
4yn 2022-04-03 03:20:51 +08:00
parent 62551a2f88
commit f0ed581b3d
7 changed files with 35 additions and 4 deletions

View File

@ -12,6 +12,8 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
## Changelog ## Changelog
- v0.2.7
- Add HORI Project Diva gamepad output and lighting mode
- v0.2.6 - v0.2.6
- Add Yubideck controller support - Add Yubideck controller support
- Add option to change Brokenithm sever port - Add option to change Brokenithm sever port

View File

@ -108,6 +108,13 @@
"ll lr fl fl fr fr rl rr"; "ll lr fl fl fr fr rl rr";
} }
.ground.ground-diva {
grid: repeat(2, 1fr) / repeat(4, 1fr);
grid-template-areas:
"sl sl sl sl"
"a b c d";
}
.air { .air {
grid-area: a; grid-area: a;
@ -417,5 +424,25 @@
<div>[guide]</div> <div>[guide]</div>
</div> </div>
</div> </div>
<div class="layout">
<div class="name">PS4, HORI DIVA Future Tone ASC Layout</div>
<div class="ground ground-diva">
<div style="grid-area: sl">[slider]</div>
<div style="grid-area: a">Triangle</div>
<div style="grid-area: b">Square</div>
<div style="grid-area: c">Cross</div>
<div style="grid-area: d">Circle</div>
</div>
<div class="air air-single">
<div>
<span style="writing-mode: vertical-lr">[disabled]</span>
</div>
</div>
<div class="extra">
<div>[disabled]</div>
<div>[disabled]</div>
<div>[disabled]</div>
</div>
</div>
</body> </body>
</html> </html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 80 KiB

2
src-tauri/Cargo.lock generated
View File

@ -2995,7 +2995,7 @@ dependencies = [
[[package]] [[package]]
name = "slidershim" name = "slidershim"
version = "0.2.6" version = "0.2.7"
dependencies = [ dependencies = [
"env_logger", "env_logger",
"log", "log",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "slidershim" name = "slidershim"
version = "0.2.6" version = "0.2.7"
description = "slidershim" description = "slidershim"
authors = ["4yn"] authors = ["4yn"]
license = "" license = ""

View File

@ -2,13 +2,15 @@
___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___ ___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___
/ __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \ / __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \
\__ \ | | (_| | __/ | \__ \ | | | | | | | | | \__ \ | | (_| | __/ | \__ \ | | | | | | | | |
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.6 |___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.7
=============================================== ===============================================
https://github.com/4yn/slidershim https://github.com/4yn/slidershim
# Changelog # Changelog
- v0.2.7
- Add HORI Project Diva gamepad output and lighting mode
- v0.2.6 - v0.2.6
- Add Yubideck controller support - Add Yubideck controller support
- Add option to change Brokenithm sever port - Add option to change Brokenithm sever port

View File

@ -1,7 +1,7 @@
{ {
"package": { "package": {
"productName": "slidershim", "productName": "slidershim",
"version": "0.2.6" "version": "0.2.7"
}, },
"build": { "build": {
"distDir": "../public", "distDir": "../public",