mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-24 22:16:14 -04:00
Automatic deploy 29002312
This commit is contained in:
parent
95d94b5220
commit
a4f20abb23
3 changed files with 18 additions and 8 deletions
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId = "me.lecaro.breakout"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 29002304
|
||||
versionName = "29002304"
|
||||
versionCode = 29002312
|
||||
versionName = "29002312"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
|
|
|
@ -2493,7 +2493,17 @@ Click an item above to start a test run with it.
|
|||
|
||||
...optionsList,
|
||||
|
||||
// (window.screenTop || window.screenY) &&
|
||||
(document.fullscreenEnabled || document.webkitFullscreenEnabled) &&(document.fullscreenElement!==null ?{
|
||||
text: "Exit Fullscreen",
|
||||
help: "Might not work on some machines",
|
||||
value() {
|
||||
if (document.exitFullscreen) {
|
||||
document.exitFullscreen();
|
||||
} else if (document.webkitCancelFullScreen) {
|
||||
document.webkitCancelFullScreen();
|
||||
}
|
||||
}
|
||||
}:
|
||||
{
|
||||
text: "Fullscreen",
|
||||
help: "Might not work on some machines",
|
||||
|
@ -2505,7 +2515,7 @@ Click an item above to start a test run with it.
|
|||
docel.webkitRequestFullscreen();
|
||||
}
|
||||
}
|
||||
},
|
||||
}),
|
||||
{
|
||||
text: 'Reset Game',
|
||||
help: "Erase high score and statistics",
|
||||
|
|
|
@ -8,16 +8,16 @@
|
|||
/>
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>Breakout 71</title>
|
||||
<link rel="stylesheet" href="style.css?v=29002304" />
|
||||
<link rel="stylesheet" href="style.css?v=29002312" />
|
||||
<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=29002304".slice(3)</script>
|
||||
<script>window.appVersion="?v=29002312".slice(3)</script>
|
||||
<script src="gif.js"></script>
|
||||
<script src="levels.js?v=29002304"></script>
|
||||
<script src="game.js?v=29002304"></script>
|
||||
<script src="levels.js?v=29002312"></script>
|
||||
<script src="game.js?v=29002312"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue