mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 12:36:15 -04:00
Build 29060272
This commit is contained in:
parent
d77a58438f
commit
c2ae98f057
7 changed files with 116 additions and 112 deletions
|
@ -19,6 +19,7 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
|
||||||
|
|
||||||
## Next release
|
## Next release
|
||||||
|
|
||||||
|
- option to display gained combo as onscreen text
|
||||||
- publish an apk to itch.io with every build
|
- publish an apk to itch.io with every build
|
||||||
- Strict sample size : count hits, not destroyed bricks
|
- Strict sample size : count hits, not destroyed bricks
|
||||||
- passive_income : lastPuckMove was not cleared between levels
|
- passive_income : lastPuckMove was not cleared between levels
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
applicationId = "me.lecaro.breakout"
|
applicationId = "me.lecaro.breakout"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 29060269
|
versionCode = 29060272
|
||||||
versionName = "29060269"
|
versionName = "29060272"
|
||||||
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
215
dist/index.html
vendored
215
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 = "29060269";
|
const VERSION = "29060272";
|
||||||
|
|
||||||
// The name of the cache
|
// The name of the cache
|
||||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
"29060269"
|
"29060272"
|
||||||
|
|
|
@ -1138,7 +1138,7 @@ export function gameStateTick(
|
||||||
gameState.levelLostCoins += coin.points;
|
gameState.levelLostCoins += coin.points;
|
||||||
destroy(gameState.coins, coinIndex);
|
destroy(gameState.coins, coinIndex);
|
||||||
if (gameState.perks.compound_interest) {
|
if (gameState.perks.compound_interest) {
|
||||||
resetCombo(gameState, coin.x, coin.y);
|
resetCombo(gameState, coin.x, gameState.gameZoneHeight - 20);
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (
|
||||||
gameState.perks.unbounded &&
|
gameState.perks.unbounded &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue