mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
Build 29040063
This commit is contained in:
parent
1c4f3d1451
commit
1839977fed
7 changed files with 8 additions and 8 deletions
|
@ -11,8 +11,8 @@ android {
|
||||||
applicationId = "me.lecaro.breakout"
|
applicationId = "me.lecaro.breakout"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 29039851
|
versionCode = 29040063
|
||||||
versionName = "29039851"
|
versionName = "29040063"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
useSupportLibrary = true
|
useSupportLibrary = true
|
||||||
|
|
File diff suppressed because one or more lines are too long
2
dist/PWA/manifest.webmanifest
vendored
2
dist/PWA/manifest.webmanifest
vendored
|
@ -1 +1 @@
|
||||||
{"short_name":"B71","name":"Breakout 71","icons":[{"src":"/icon.7be7e26e.svg","sizes":"48x48 72x72 96x96 128x128 256x256 512x512","type":"image/svg+xml","purpose":"any"},{"src":"/icon-128.53de3298.png","sizes":"128x128","type":"image/png"}],"start_url":"/index.html?isPWA=true","display":"fullscreen","theme_color":"#5DA3EA","background_color":"#ffffff"}
|
{"short_name":"B71","name":"Breakout 71","icons":[{"src":"/icon.cad232de.svg","sizes":"48x48 72x72 96x96 128x128 256x256 512x512","type":"image/svg+xml","purpose":"any"},{"src":"/icon-128.07cda280.png","sizes":"128x128","type":"image/png"}],"start_url":"/index.html?isPWA=true","display":"fullscreen","theme_color":"#5DA3EA","background_color":"#ffffff"}
|
2
dist/index.html
vendored
2
dist/index.html
vendored
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
||||||
// The version of the cache.
|
// The version of the cache.
|
||||||
const VERSION = "29039851";
|
const VERSION = "29040063";
|
||||||
|
|
||||||
// The name of the cache
|
// The name of the cache
|
||||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
"29039851"
|
"29040063"
|
||||||
|
|
|
@ -495,7 +495,7 @@ export async function setLevel(gameState: GameState, l: number) {
|
||||||
empty(gameState.lights);
|
empty(gameState.lights);
|
||||||
empty(gameState.texts);
|
empty(gameState.texts);
|
||||||
gameState.bricks = [...lvl.bricks];
|
gameState.bricks = [...lvl.bricks];
|
||||||
|
gameState.needsRender = true;
|
||||||
// This caused problems with accented characters like the ô of côte d'ivoire for odd reasons
|
// This caused problems with accented characters like the ô of côte d'ivoire for odd reasons
|
||||||
// background.src = 'data:image/svg+xml;base64,' + btoa(lvl.svg)
|
// background.src = 'data:image/svg+xml;base64,' + btoa(lvl.svg)
|
||||||
background.src = "data:image/svg+xml;UTF8," + lvl.svg;
|
background.src = "data:image/svg+xml;UTF8," + lvl.svg;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue