Merge pull request #1815 from ps-igel/master

fix clockmode setting
pull/1816/head
Gordon Williams 2022-05-11 08:26:44 +01:00 committed by GitHub
commit 58dfaac276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -6,4 +6,5 @@
0.06: Fixed issue 1609 added a message popup state handler to control unwanted screen redraw
0.07: Optimized the mover algorithm for efficiency (work in progress)
0.08: Bug fix at end of the game with victorious splash and glorious orchestra
0.09: Added settings menu, removed symbol selection button (*), added highscore reset
0.09: Added settings menu, removed symbol selection button (*), added highscore reset
0.10 fixed clockmode in settings

View File

@ -1,7 +1,7 @@
{ "id": "game1024",
"name": "1024 Game",
"shortName" : "1024 Game",
"version": "0.09",
"version": "0.10",
"icon": "game1024.png",
"screenshots": [ {"url":"screenshot.png" } ],
"readme":"README.md",

View File

@ -32,10 +32,10 @@
}
},
"Exit press:": {
value: !settings.debugMode, // ! converts undefined to true
value: !settings.clockMode, // ! converts undefined to true
format: v => v?"short":"long",
onchange: v => {
settings.debugMode = v;
settings.clockMode = v;
writeSettings();
},
},
@ -67,4 +67,4 @@
}
// Show the menu
E.showMenu(settingsMenu);
})
})