mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 04:26:14 -04:00
Build 29085883
This commit is contained in:
parent
0cfd75e7b2
commit
ae2f43be0e
9 changed files with 9 additions and 15 deletions
|
@ -23,10 +23,10 @@ Other translation are very welcome, contact me if you'd like to submit one.
|
||||||
# Changelog
|
# Changelog
|
||||||
## To do
|
## To do
|
||||||
|
|
||||||
- in apk, video download doesnt work
|
|
||||||
|
|
||||||
## Done
|
## Done
|
||||||
|
|
||||||
|
- in apk, video download doesn't work
|
||||||
- ask for permanent storage
|
- ask for permanent storage
|
||||||
- option: reuse past frame's light in new frame lighting computation when there are 150+ coins on screen, to limit the performance impact of rendering lots of lights
|
- option: reuse past frame's light in new frame lighting computation when there are 150+ coins on screen, to limit the performance impact of rendering lots of lights
|
||||||
|
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
applicationId = "me.lecaro.breakout"
|
applicationId = "me.lecaro.breakout"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 29085797
|
versionCode = 29085883
|
||||||
versionName = "29085797"
|
versionName = "29085883"
|
||||||
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
8
dist/index.html
vendored
8
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 = "29085797";
|
const VERSION = "29085883";
|
||||||
|
|
||||||
// The name of the cache
|
// The name of the cache
|
||||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
"29085797"
|
"29085883"
|
||||||
|
|
|
@ -423,4 +423,3 @@ export function getCornerOffset(gameState: GameState) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const isInWebView = !!window.location.href.includes("isInWebView=true");
|
export const isInWebView = !!window.location.href.includes("isInWebView=true");
|
||||||
console.log({ isInWebView });
|
|
||||||
|
|
|
@ -145,7 +145,6 @@ function blobToBase64(blob: Blob): Promise<string> {
|
||||||
let reader = new FileReader();
|
let reader = new FileReader();
|
||||||
|
|
||||||
reader.onload = function () {
|
reader.onload = function () {
|
||||||
console.log(reader.result);
|
|
||||||
resolve(reader.result);
|
resolve(reader.result);
|
||||||
};
|
};
|
||||||
reader.onerror = function () {
|
reader.onerror = function () {
|
||||||
|
|
|
@ -68,6 +68,6 @@ export async function askForPersistentStorage() {
|
||||||
}
|
}
|
||||||
const persistent = await navigator.storage.persist();
|
const persistent = await navigator.storage.persist();
|
||||||
if (!persistent) {
|
if (!persistent) {
|
||||||
console.warn('No storage granted')
|
console.warn("No storage granted");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue