Skip to content

Commit

Permalink
update readme and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
4yn committed Apr 3, 2022
1 parent 32045ff commit 46c9f1c
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
30 changes: 25 additions & 5 deletions res/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<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";
color: #444;

display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
gap: 1rem;
}
h1,
h2,
Expand All @@ -41,7 +41,7 @@

width: 36rem;
height: 13rem;
margin-bottom: 2rem;
margin-bottom: 1rem;

gap: 0.5rem;

Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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>
Expand All @@ -439,7 +443,23 @@
</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>
Expand Down
Binary file modified res/layouts/layout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slidershim"
version = "0.2.7"
version = "0.2.8"
description = "slidershim"
authors = ["4yn"]
license = ""
Expand Down
5 changes: 4 additions & 1 deletion src-tauri/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "slidershim",
"version": "0.2.7"
"version": "0.2.8"
},
"build": {
"distDir": "../public",
Expand Down

0 comments on commit 46c9f1c

Please sign in to comment.