Skip to content

Commit 46c9f1c

Browse files
committed
update readme and bump version
1 parent 32045ff commit 46c9f1c

File tree

7 files changed

+35
-9
lines changed

7 files changed

+35
-9
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
1212

1313
## Changelog
1414

15+
- v0.2.8
16+
- Add slider only layout (no buttons) for Project Diva gamepad output
17+
- Add options button to Project Diva gamepad output
1518
- v0.2.7
1619
- Add HORI Project Diva gamepad output and lighting mode
1720
- v0.2.6

res/layouts/index.html

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<style>
88
body {
99
max-width: 1200px;
10-
margin: 40px auto;
11-
padding: 0 10px;
10+
margin: 2rem auto;
11+
padding: 0 1rem;
1212
font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
1313
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
1414
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1515
color: #444;
1616

1717
display: grid;
1818
grid-template-columns: repeat(2, 1fr);
19-
gap: 20px;
19+
gap: 1rem;
2020
}
2121
h1,
2222
h2,
@@ -41,7 +41,7 @@
4141

4242
width: 36rem;
4343
height: 13rem;
44-
margin-bottom: 2rem;
44+
margin-bottom: 1rem;
4545

4646
gap: 0.5rem;
4747

@@ -101,6 +101,10 @@
101101
grid: repeat(1, 1fr) / repeat(4, 1fr);
102102
}
103103

104+
.ground.ground-1 {
105+
grid: repeat(1, 1fr) / repeat(1, 1fr);
106+
}
107+
104108
.ground.ground-voltex {
105109
grid: repeat(2, 1fr) / repeat(8, 1fr);
106110
grid-template-areas:
@@ -425,7 +429,7 @@
425429
</div>
426430
</div>
427431
<div class="layout">
428-
<div class="name">PS4, HORI DIVA Future Tone ASC Layout</div>
432+
<div class="name">DS4, HORI DIVA FT ASC Layout</div>
429433
<div class="ground ground-diva">
430434
<div style="grid-area: sl">[slider]</div>
431435
<div style="grid-area: a">Triangle</div>
@@ -439,7 +443,23 @@
439443
</div>
440444
</div>
441445
<div class="extra">
446+
<div>[options]</div>
447+
<div>[disabled]</div>
442448
<div>[disabled]</div>
449+
</div>
450+
</div>
451+
<div class="layout">
452+
<div class="name">DS4, HORI DIVA FT ASC Slider Only Layout</div>
453+
<div class="ground ground-1">
454+
<div>[slider]</div>
455+
</div>
456+
<div class="air air-single">
457+
<div>
458+
<span style="writing-mode: vertical-lr">[disabled]</span>
459+
</div>
460+
</div>
461+
<div class="extra">
462+
<div>[options]</div>
443463
<div>[disabled]</div>
444464
<div>[disabled]</div>
445465
</div>

res/layouts/layout.png

1.24 KB
Loading

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "slidershim"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
description = "slidershim"
55
authors = ["4yn"]
66
license = ""

src-tauri/README.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___
33
/ __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \
44
\__ \ | | (_| | __/ | \__ \ | | | | | | | | |
5-
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.7
5+
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.8
66
===============================================
77

88
https://github.com/4yn/slidershim
99

1010
# Changelog
1111

12+
- v0.2.8
13+
- Add slider only layout (no buttons) for Project Diva gamepad output
14+
- Add options button to Project Diva gamepad output
1215
- v0.2.7
1316
- Add HORI Project Diva gamepad output and lighting mode
1417
- v0.2.6

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"productName": "slidershim",
4-
"version": "0.2.7"
4+
"version": "0.2.8"
55
},
66
"build": {
77
"distDir": "../public",

0 commit comments

Comments
 (0)