This commit is contained in:
root
2025-05-09 17:03:37 +02:00
parent ba26edf8be
commit e6f7c87ea4
3 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ For an enhanced tactile experience, Nexus Timer supports Smart Buttons based on
* **Player 1's Button:** Single Click: Emulates a key press (e.g., 'a'). Configure this as Player 1's "Pass Turn / My Pause" hotkey in the app.
* **Player 2's Button:** Single Click: Emulates a key press (e.g., 'b'). Configure as Player 2's "Pass Turn / My Pause" hotkey.
* If Player 3 is Game Admin:
* **Player 3's Button:** Single Click: Emulates a key press (e.g., 'c'). Configure as Player 3's "Pass Turn / My Pause" hotkey.
* **Player 3's Button:** Single Click: Emulates a key press (e.g., 'c'). Configure as Player 3's "Pass Turn / My Pause" hotkey.
* **Player 3's Button:** Double Click: Emulates a key press (e.g., 'x'). Configure as the "Global Run All Timers" hotkey in the app.
* **Player 3's Button:** Long Press: Emulates a key press (e.g., 's'). Configure as the "Global Stop/Pause All" hotkey in the app.
@@ -230,4 +230,4 @@ View real-time logs
```bash
journalctl -fu virt-nexus-timer.service
```
The previously installed PWA should update automatically or offer an upgrade
The previously installed PWA should update automatically or offer an upgrade

View File

@@ -1,4 +1,4 @@
const CACHE_VERSION = 'nexus-timer-cache-v7';
const CACHE_VERSION = 'nexus-timer-cache-v8';
const APP_SHELL_URLS = [
// '/', // Let NetworkFirst handle '/'
'/manifest.json',

View File

@@ -60,7 +60,7 @@ const store = useStore();
// and replace it with the actual build timestamp.
// For display, we'll use a ref.
const buildTime = ref("2025-05-09 16:57:06");
// If your hook replaces the entire line `const buildTime = ref("__BUILD_TIME__");`
// If your hook replaces the entire line `const buildTime = ref("2025-05-09 17:03:37");`
// with `const buildTime = ref("YYYY-MM-DD HH:MM:SS");`, that's also fine.
// Or, if it replaces only the string content: `const buildTime = ref("Actual Build Time");`