1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-11-23 21:40:57 +01:00

update readme and bump version

This commit is contained in:
4yn 2022-04-03 11:51:02 +08:00
parent 32045ffa61
commit 46c9f1c722
7 changed files with 35 additions and 9 deletions

View File

@ -12,6 +12,9 @@ Software adapter for various Chunithm slider controllers with a built-in Brokeni
## Changelog
- v0.2.8
- Add slider only layout (no buttons) for Project Diva gamepad output
- Add options button to Project Diva gamepad output
- v0.2.7
- Add HORI Project Diva gamepad output and lighting mode
- v0.2.6

View File

@ -7,8 +7,8 @@
<style>
body {
max-width: 1200px;
margin: 40px auto;
padding: 0 10px;
margin: 2rem auto;
padding: 0 1rem;
font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
@ -16,7 +16,7 @@
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
gap: 1rem;
}
h1,
h2,
@ -41,7 +41,7 @@
width: 36rem;
height: 13rem;
margin-bottom: 2rem;
margin-bottom: 1rem;
gap: 0.5rem;
@ -101,6 +101,10 @@
grid: repeat(1, 1fr) / repeat(4, 1fr);
}
.ground.ground-1 {
grid: repeat(1, 1fr) / repeat(1, 1fr);
}
.ground.ground-voltex {
grid: repeat(2, 1fr) / repeat(8, 1fr);
grid-template-areas:
@ -425,7 +429,7 @@
</div>
</div>
<div class="layout">
<div class="name">PS4, HORI DIVA Future Tone ASC Layout</div>
<div class="name">DS4, HORI DIVA FT ASC Layout</div>
<div class="ground ground-diva">
<div style="grid-area: sl">[slider]</div>
<div style="grid-area: a">Triangle</div>
@ -439,8 +443,24 @@
</div>
</div>
<div class="extra">
<div>[options]</div>
<div>[disabled]</div>
<div>[disabled]</div>
</div>
</div>
<div class="layout">
<div class="name">DS4, HORI DIVA FT ASC Slider Only Layout</div>
<div class="ground ground-1">
<div>[slider]</div>
</div>
<div class="air air-single">
<div>
<span style="writing-mode: vertical-lr">[disabled]</span>
</div>
</div>
<div class="extra">
<div>[options]</div>
<div>[disabled]</div>
<div>[disabled]</div>
</div>
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 81 KiB

2
src-tauri/Cargo.lock generated
View File

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

View File

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

View File

@ -2,13 +2,16 @@
___| (_) __| | ___ _ __ ___| |__ (_)_ __ ___
/ __| | |/ _` |/ _ \ '__/ __| '_ \| | '_ ` _ \
\__ \ | | (_| | __/ | \__ \ | | | | | | | | |
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.7
|___/_|_|\__,_|\___|_| |___/_| |_|_|_| |_| |_| v0.2.8
===============================================
https://github.com/4yn/slidershim
# Changelog
- v0.2.8
- Add slider only layout (no buttons) for Project Diva gamepad output
- Add options button to Project Diva gamepad output
- v0.2.7
- Add HORI Project Diva gamepad output and lighting mode
- v0.2.6

View File

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