Compare commits
1 Commits
v0.1.2-bet
...
branding-t
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
373fe8b835 |
|
Before Width: | Height: | Size: 27 KiB |
BIN
assets/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
BIN
assets/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
3
assets/favicon.svg
Normal file
|
After Width: | Height: | Size: 206 KiB |
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
"name": "ECHO REALITY - 16-Bit Cassette Player",
|
"name": "ECHO REALITY",
|
||||||
"short_name": "ECHO REALITY",
|
"short_name": "ECHO REALITY",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "/web-app-manifest-192x192.png",
|
"src": "/assets/web-app-manifest-192x192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"purpose": "maskable"
|
"purpose": "maskable"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "/web-app-manifest-512x512.png",
|
"src": "/assets/web-app-manifest-512x512.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"purpose": "maskable"
|
"purpose": "maskable"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"theme_color": "#000000",
|
"theme_color": "#ffffff",
|
||||||
"background_color": "#000000",
|
"background_color": "#ffffff",
|
||||||
"display": "standalone"
|
"display": "standalone"
|
||||||
}
|
}
|
||||||
BIN
assets/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
assets/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 215 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
BIN
favicon.ico
|
Before Width: | Height: | Size: 15 KiB |
16
favicon.svg
|
Before Width: | Height: | Size: 316 KiB |
17
index.html
@@ -3,13 +3,14 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>ECHO REALITY - 16-Bit Cassette Player</title>
|
<title>ECHO REALITY</title>
|
||||||
<link rel="stylesheet" href="styles.css">
|
<link rel="icon" type="image/png" href="/assets/favicon-96x96.png" sizes="96x96" />
|
||||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="shortcut icon" href="/assets/favicon.ico" />
|
||||||
<link rel="shortcut icon" href="/favicon.ico" />
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png" />
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
<meta name="apple-mobile-web-app-title" content="ECHO REALITY" />
|
||||||
<link rel="manifest" href="/site.webmanifest" />
|
<link rel="manifest" href="/assets/site.webmanifest" />
|
||||||
|
<link rel="stylesheet" href="assets/styles.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="player">
|
<div class="player">
|
||||||
@@ -161,6 +162,6 @@
|
|||||||
|
|
||||||
<audio id="audio" preload="metadata"></audio>
|
<audio id="audio" preload="metadata"></audio>
|
||||||
|
|
||||||
<script src="app.js"></script>
|
<script src="src/app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 155 KiB |