Build 29035727

This commit is contained in:
Renan LE CARO 2025-03-16 17:48:06 +01:00
parent 819197031f
commit 059a1a6585
13 changed files with 7458 additions and 19 deletions

View file

@ -11,8 +11,8 @@ android {
applicationId = "me.lecaro.breakout"
minSdk = 21
targetSdk = 34
versionCode = 29035725
versionName = "29035725"
versionCode = 29035727
versionName = "29035727"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true

File diff suppressed because one or more lines are too long

33
dist/PWA/sw-b71.js vendored
View file

@ -1,2 +1,33 @@
function e(e,t,n,r,a,i,c){try{var o=e[i](c),u=o.value}catch(e){n(e);return}o.done?t(u):Promise.resolve(u).then(r,a)}function t(t){return function(){var n=this,r=arguments;return new Promise(function(a,i){var c=t.apply(n,r);function o(t){e(c,a,i,o,u,"next",t)}function u(t){e(c,a,i,o,u,"throw",t)}o(void 0)})}}function n(e,t){var n,r,a,i,c={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return i={next:o(0),throw:o(1),return:o(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function o(i){return function(o){return function(i){if(n)throw TypeError("Generator is already executing.");for(;c;)try{if(n=1,r&&(a=2&i[0]?r.return:i[0]?r.throw||((a=r.return)&&a.call(r),0):r.next)&&!(a=a.call(r,i[1])).done)return a;switch(r=0,a&&(i=[2&i[0],a.value]),i[0]){case 0:case 1:a=i;break;case 4:return c.label++,{value:i[1],done:!1};case 5:c.label++,r=i[1],i=[0];continue;case 7:i=c.ops.pop(),c.trys.pop();continue;default:if(!(a=(a=c.trys).length>0&&a[a.length-1])&&(6===i[0]||2===i[0])){c=0;continue}if(3===i[0]&&(!a||i[1]>a[0]&&i[1]<a[3])){c.label=i[1];break}if(6===i[0]&&c.label<a[1]){c.label=a[1],a=i;break}if(a&&c.label<a[2]){c.label=a[2],c.ops.push(i);break}a[2]&&c.ops.pop(),c.trys.pop();continue}i=t.call(e,c)}catch(e){i=[6,e],r=0}finally{n=a=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,o])}}}var r="breakout-71-".concat("29035725"),a=["/"];self.addEventListener("install",function(e){e.waitUntil(t(function(){return n(this,function(e){switch(e.label){case 0:return[4,caches.open(r)];case 1:return e.sent().addAll(a),[2]}})})())}),self.addEventListener("activate",function(e){e.waitUntil(t(function(){return n(this,function(e){switch(e.label){case 0:return[4,caches.keys()];case 1:return[4,Promise.all(e.sent().map(function(e){if(e!==r)return caches.delete(e)}))];case 2:return e.sent(),[4,clients.claim()];case 3:return e.sent(),[2]}})})())}),self.addEventListener("fetch",function(e){if("navigate"===e.request.mode&&e.request.url.endsWith("/index.html?isPWA=true")){e.respondWith(caches.match("/"));return}});
// The version of the cache.
const VERSION = "29035727";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;
// The static resources that the app needs to function.
const APP_STATIC_RESOURCES = [
"/"
];
// On install, cache the static resources
self.addEventListener("install", (event)=>{
event.waitUntil((async ()=>{
const cache = await caches.open(CACHE_NAME);
cache.addAll(APP_STATIC_RESOURCES);
})());
});
// delete old caches on activate
self.addEventListener("activate", (event)=>{
event.waitUntil((async ()=>{
const names = await caches.keys();
await Promise.all(names.map((name)=>{
if (name !== CACHE_NAME) return caches.delete(name);
}));
await clients.claim();
})());
});
self.addEventListener("fetch", (event)=>{
if (event.request.mode === "navigate" && event.request.url.endsWith("/index.html?isPWA=true")) {
event.respondWith(caches.match("/"));
return;
}
});
//# sourceMappingURL=sw-b71.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50">
<rect x="0" y="0" width="30" height="10" fill="#6262EA"></rect>
<rect x="20" y="10" width="10" height="10" fill="#6262EA"></rect>
<rect x="10" y="20" width="10" height="20" fill="#6262EA"></rect>
<rect x="20" y="20" width="10" height="10" fill="#5DA3EA"></rect>
<rect x="30" y="10" width="10" height="30" fill="#5DA3EA"></rect>
<rect x="20" y="40" width="40" height="30" fill="#5DA3EA"></rect>
</svg>

Before

Width:  |  Height:  |  Size: 464 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#6262EA" d="M0 0h30v10H0zM20 10h10v10H20zM10 20h10v20H10z"/><path fill="#5DA3EA" d="M20 20h10v10H20zM30 10h10v30H30zM20 40h40v30H20z"/></svg>

Before

Width:  |  Height:  |  Size: 216 B

3676
dist/index.html vendored

File diff suppressed because one or more lines are too long

67
package-lock.json generated
View file

@ -26,7 +26,9 @@
"svgo": "^3.3.2"
},
"devDependencies": {
"@parcel/optimizer-data-url": "^2.13.3",
"@parcel/packager-raw-url": "^2.13.3",
"@parcel/transformer-inline-string": "^2.13.3",
"@parcel/transformer-webmanifest": "^2.13.3",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
@ -1510,6 +1512,40 @@
"url": "https://opencollective.com/parcel"
}
},
"node_modules/@parcel/optimizer-data-url": {
"version": "2.13.3",
"resolved": "https://registry.npmjs.org/@parcel/optimizer-data-url/-/optimizer-data-url-2.13.3.tgz",
"integrity": "sha512-qO/FlrnUDAEAtusmCgjUNPMxRO1S/16rnQ+ulgt/Bb/8fkB0h31jrXax+jk6XCyDgyVxdUI8iIqKlin/Qg3ScA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@parcel/plugin": "2.13.3",
"@parcel/utils": "2.13.3",
"isbinaryfile": "^5.0.2",
"mime": "^3.0.0"
},
"engines": {
"node": ">= 16.0.0",
"parcel": "^2.13.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/parcel"
}
},
"node_modules/@parcel/optimizer-data-url/node_modules/mime": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
"integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
"dev": true,
"license": "MIT",
"bin": {
"mime": "cli.js"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@parcel/optimizer-htmlnano": {
"version": "2.13.3",
"resolved": "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.13.3.tgz",
@ -2147,6 +2183,24 @@
"@parcel/core": "^2.13.3"
}
},
"node_modules/@parcel/transformer-inline-string": {
"version": "2.13.3",
"resolved": "https://registry.npmjs.org/@parcel/transformer-inline-string/-/transformer-inline-string-2.13.3.tgz",
"integrity": "sha512-xxFCpY9NKJJ05tECb6nYjswAg0SDccuVeGTuNNXBOSMT2UPSAFZdjVYLjXOiKV417ffJ36ZqLkHDluxNoN++yA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@parcel/plugin": "2.13.3"
},
"engines": {
"node": ">= 16.0.0",
"parcel": "^2.13.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/parcel"
}
},
"node_modules/@parcel/transformer-js": {
"version": "2.13.3",
"resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.13.3.tgz",
@ -6344,6 +6398,19 @@
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
"license": "MIT"
},
"node_modules/isbinaryfile": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.4.tgz",
"integrity": "sha512-YKBKVkKhty7s8rxddb40oOkuP0NbaeXrQvLin6QMHL7Ypiy2RW9LwOVrVgZRyOrhQlayMd9t+D8yDy8MKFTSDQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 18.0.0"
},
"funding": {
"url": "https://github.com/sponsors/gjtorikian/"
}
},
"node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",

View file

@ -29,7 +29,9 @@
"svgo": "^3.3.2"
},
"devDependencies": {
"@parcel/optimizer-data-url": "^2.13.3",
"@parcel/packager-raw-url": "^2.13.3",
"@parcel/transformer-inline-string": "^2.13.3",
"@parcel/transformer-webmanifest": "^2.13.3",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",

View file

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

View file

@ -1 +1 @@
"29035725"
"29035727"

View file

@ -17,7 +17,7 @@
<style>
@import "game.less";
</style>
<link rel="icon" href="./PWA/icon.svg" />
<link rel="icon" href="data-url:./PWA/icon.svg" />
</head>
<body>
<button id="menu"><span id="menuLabel">menu</span></button>