Compare commits
2
Commits
v1.1.0
...
7ee2e71bc7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7ee2e71bc7
|
||
|
|
86434aaa2b
|
@@ -1,27 +0,0 @@
|
||||
name: Build TDK Pinball
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
defaults:
|
||||
run:
|
||||
working-directory: tdkpin-rs
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: clippy, rustfmt
|
||||
- name: Install Linux development libraries
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt-get update && sudo apt-get install -y libasound2-dev libgl1-mesa-dev libxi-dev
|
||||
- run: cargo check --all-targets
|
||||
- run: cargo test --all-targets
|
||||
- run: cargo clippy --all-targets -- -D warnings
|
||||
@@ -4,7 +4,7 @@
|
||||
const storageKey = "tdkpin.save.v1";
|
||||
const encoder = new TextEncoder();
|
||||
const decoder = new TextDecoder();
|
||||
const highScoreApi = "/api/highscores";
|
||||
const highScoreApi = "api/highscores";
|
||||
let lastRevision = 0;
|
||||
let lastHighScoreRevision = 0;
|
||||
let highScoreRequestInFlight = false;
|
||||
|
||||
Reference in New Issue
Block a user