added dockerfile and updated Readme

This commit is contained in:
cpu
2025-03-22 23:17:40 +01:00
parent 21cb105cd0
commit 1cfcd628d4
13 changed files with 49 additions and 23 deletions

View File

@@ -14,7 +14,7 @@ const audioManager = {
this.audioContext = new (window.AudioContext || window.webkitAudioContext)();
// Check for saved mute preference
const savedMute = localStorage.getItem('chessTimerMuted');
const savedMute = localStorage.getItem('gameTimerMuted');
this.muted = savedMute === 'true';
// Create all the sounds
@@ -270,7 +270,7 @@ const audioManager = {
// Toggle mute state
toggleMute() {
this.muted = !this.muted;
localStorage.setItem('chessTimerMuted', this.muted);
localStorage.setItem('gameTimerMuted', this.muted);
return this.muted;
},