mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-07-20 10:04:07 +00:00
Build 29180572
This commit is contained in:
parent
ce35eddf66
commit
9ba2032687
7 changed files with 13 additions and 9 deletions
|
@ -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
|
||||
- remove mentions of "puck" from store descriptions : fdroid, play store, itchio
|
||||
-
|
||||
|
||||
## Done
|
||||
## 29179087
|
||||
|
||||
- added levels from obigre : Profit motive, Home, Last leaf, Peaceful Dove, Corporate dress
|
||||
- imported brazilian translation
|
||||
|
||||
## 29158270
|
||||
|
|
|
@ -29,8 +29,8 @@ android {
|
|||
applicationId = "me.lecaro.breakout"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 29179087
|
||||
versionName = "29179087"
|
||||
versionCode = 29180572
|
||||
versionName = "29180572"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
|
|
File diff suppressed because one or more lines are too long
5
dist/index.html
vendored
5
dist/index.html
vendored
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
// The version of the cache.
|
||||
const VERSION = "29179087";
|
||||
const VERSION = "29180572";
|
||||
|
||||
// The name of the cache
|
||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29179087"
|
||||
"29180572"
|
||||
|
|
|
@ -82,10 +82,12 @@ async function openLevelEditorLevelsList() {
|
|||
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[];
|
||||
const level = rawList[nth];
|
||||
const bricks = level.bricks.split("");
|
||||
color ||= bricks.find((i) => i !== "_") || "W";
|
||||
|
||||
let grid = "";
|
||||
for (let y = 0; y < level.size; y++) {
|
||||
grid += '<div style="background: ' + (level.color || "black") + ';">';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue