Automatic deploy 29014379

This commit is contained in:
Renan LE CARO 2025-03-01 21:59:41 +01:00
parent 8c2bc4f32b
commit 81224f928d
3 changed files with 7 additions and 6 deletions

View file

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

View file

@ -187,6 +187,7 @@ const fitSize = () => {
document.documentElement.style.setProperty('--vh', `${window.innerHeight * 0.01}px`);
};
window.addEventListener("resize", fitSize);
window.addEventListener("fullscreenchange", fitSize);
function recomputeTargetBaseSpeed() {
// We never want the ball to completely stop, it will move at least 3px per frame

View file

@ -9,16 +9,16 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Breakout 71</title>
<meta name="description" content="A breakout game with roguelite mechanics. Break bricks, catch coins, pick upgrades, repeat. Play for free on mobile and desktop.">
<link rel="stylesheet" href="style.css?v=29014360" />
<link rel="stylesheet" href="style.css?v=29014379" />
<link rel="icon" href="./icon.svg" />
</head>
<body>
<button id="menu"><span> menu</span></button>
<button id="score"></button>
<canvas id="game"></canvas>
<script>window.appVersion="?v=29014360".slice(3)</script>
<script src="levels.js?v=29014360"></script>
<script src="game.js?v=29014360"></script>
<script>window.appVersion="?v=29014379".slice(3)</script>
<script src="levels.js?v=29014379"></script>
<script src="game.js?v=29014379"></script>
</body>