Build 29060048

This commit is contained in:
Renan LE CARO 2025-04-02 16:09:00 +02:00
parent 866bf4164b
commit a215237c17
7 changed files with 9 additions and 10 deletions

View file

@ -17,6 +17,7 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
## next goals
- high score issues
## 29059721.

View file

@ -11,8 +11,8 @@ android {
applicationId = "me.lecaro.breakout"
minSdk = 21
targetSdk = 34
versionCode = 29059827
versionName = "29059827"
versionCode = 29060048
versionName = "29060048"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true

File diff suppressed because one or more lines are too long

4
dist/index.html vendored
View file

@ -1474,7 +1474,7 @@ const upgrades = (0, _upgrades.rawUpgrades).map((u)=>({
}));
},{"./data/palette.json":"ktRBU","./data/levels.json":"8JSUc","./data/version.json":"iyP6E","./upgrades":"1u3Dx","./getLevelBackground":"7OIPf","./levelIcon":"6rQoT","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"iyP6E":[function(require,module,exports,__globalThis) {
module.exports = JSON.parse("\"29059827\"");
module.exports = JSON.parse("\"29060048\"");
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
@ -4745,7 +4745,7 @@ function newGameState(params) {
lastScoreIncrease: -1000,
lastExplosion: -1000,
lastBrickBroken: 0,
highScore: parseFloat(localStorage.getItem("breakout-3-hsbreakout-3-hs-" + params?.mode) || "0"),
highScore: parseFloat(localStorage.getItem("breakout-3-hs-" + params?.mode) || "0"),
balls: [],
ballsColor: "white",
bricks: [],

View file

@ -1,5 +1,5 @@
// The version of the cache.
const VERSION = "29059827";
const VERSION = "29060048";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;

View file

@ -1 +1 @@
"29059827"
"29060048"

View file

@ -64,9 +64,7 @@ export function newGameState(params: RunParams): GameState {
lastExplosion: -1000,
lastBrickBroken: 0,
highScore: parseFloat(
localStorage.getItem(
"breakout-3-hsbreakout-3-hs-" + params?.mode || "short",
) || "0",
localStorage.getItem("breakout-3-hs-" + params?.mode || "short") || "0",
),
balls: [],
ballsColor: "white",