Build 29180572

This commit is contained in:
Renan LE CARO 2025-06-25 08:52:45 +02:00
parent ce35eddf66
commit 9ba2032687
7 changed files with 13 additions and 9 deletions

View file

@ -17,10 +17,11 @@ Break colourful bricks, catch bouncing coins and select powerful upgrades !
- add check for translation variable present in one language but not english - add check for translation variable present in one language but not english
- remove mentions of "puck" from store descriptions : fdroid, play store, itchio - remove mentions of "puck" from store descriptions : fdroid, play store, itchio
-
## Done ## Done
## 29179087
- added levels from obigre : Profit motive, Home, Last leaf, Peaceful Dove, Corporate dress
- imported brazilian translation - imported brazilian translation
## 29158270 ## 29158270

View file

@ -29,8 +29,8 @@ android {
applicationId = "me.lecaro.breakout" applicationId = "me.lecaro.breakout"
minSdk = 21 minSdk = 21
targetSdk = 34 targetSdk = 34
versionCode = 29179087 versionCode = 29180572
versionName = "29179087" versionName = "29180572"
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

5
dist/index.html vendored

File diff suppressed because one or more lines are too long

View file

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

View file

@ -1 +1 @@
"29179087" "29180572"

View file

@ -82,10 +82,12 @@ async function openLevelEditorLevelsList() {
if (typeof choice == "function") choice(); if (typeof choice == "function") choice();
} }
export async function editRawLevelList(nth: number, color = "W") { export async function editRawLevelList(nth: number, color = "") {
let rawList = getSettingValue("custom_levels", []) as RawLevel[]; let rawList = getSettingValue("custom_levels", []) as RawLevel[];
const level = rawList[nth]; const level = rawList[nth];
const bricks = level.bricks.split(""); const bricks = level.bricks.split("");
color ||= bricks.find((i) => i !== "_") || "W";
let grid = ""; let grid = "";
for (let y = 0; y < level.size; y++) { for (let y = 0; y < level.size; y++) {
grid += '<div style="background: ' + (level.color || "black") + ';">'; grid += '<div style="background: ' + (level.color || "black") + ';">';