mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-06-14 10:14:47 -04:00
Build 29060048
This commit is contained in:
parent
866bf4164b
commit
a215237c17
7 changed files with 9 additions and 10 deletions
|
@ -17,6 +17,7 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
|
|||
|
||||
## next goals
|
||||
|
||||
- high score issues
|
||||
|
||||
## 29059721.
|
||||
|
||||
|
|
|
@ -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
4
dist/index.html
vendored
|
@ -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: [],
|
||||
|
|
|
@ -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}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29059827"
|
||||
"29060048"
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue