mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 13:06:15 -04:00
Automatic deploy 29014379
This commit is contained in:
parent
8c2bc4f32b
commit
81224f928d
3 changed files with 7 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue