Skip to content

Commit 5c7fb3a

Browse files
committed
v1.1.0: Calibration overhaul, splash screen, and improved controller detection
- Redesigned calibration UI into guided firmware/software panels - Added animated splash screen on first launch - Added disconnected-controller placeholder screen - Fixed hidapi feature report buffer sizing for Windows - Improved DualSense detection reliability (fresh HidApi per reconnect, liveness watchdog, exponential back-off) - Added adaptive triggers, lighting, audio, game monitor, and persistence modules - Added CI workflow Made-with: Cursor
1 parent 5939b07 commit 5c7fb3a

26 files changed

Lines changed: 12024 additions & 1786 deletions

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
8+
jobs:
9+
validate:
10+
runs-on: windows-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
cache: npm
21+
22+
- name: Setup Rust
23+
uses: dtolnay/rust-toolchain@stable
24+
25+
- name: Install frontend dependencies
26+
run: npm ci
27+
28+
- name: Run frontend tests
29+
run: npm test
30+
31+
- name: Build frontend
32+
run: npm run build
33+
34+
- name: Run Rust tests
35+
run: cargo test --manifest-path src-tauri/Cargo.toml

0 commit comments

Comments
 (0)