-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.html
More file actions
87 lines (83 loc) · 3.27 KB
/
install.html
File metadata and controls
87 lines (83 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Install Complete Metronome</title>
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="assets/icon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="styles.css" />
<link rel="manifest" href="manifest.webmanifest" />
</head>
<body class="install-page">
<main class="app-shell install-shell">
<section class="install-hero">
<p class="app-kicker">Installation</p>
<h1>Install Complete Metronome</h1>
<p class="app-subtitle">The browser version is fully functional, except for the ability to run in the background - you don't have to install anything.</p>
<p class="app-subtitle">But if you whish to, chose the setup that fits your device to install as an app.</p>
</section>
<section class="install-grid">
<div class="install-card">
<h2>Android</h2>
<p class="install-text">
Download the APK from GitHub Releases:
</p>
<p class="install-links">
<a
class="install-link"
href="https://github.com/mojasp/CompleteMetronome"
target="_blank"
rel="noreferrer"
>
https://github.com/mojasp/CompleteMetronome
</a>
</p>
<p class="install-text">
You can also install it as a PWA, but it will not run in the background.
</p>
<p class="install-note">Links to Play Store and F-Droid will follow.</p>
</div>
<div class="install-card">
<h2>iOS (Safari)</h2>
<p class="install-text">
Turn off Auto-Lock due to iOS restrictions on PWAs: Settings → Display & Brightness → Auto-Lock
→ Never. Alternatively, keep using the browser-based version.
</p>
<ol class="install-steps">
<li>Open this site in Safari.</li>
<li>Tap Share → Add to Home Screen.</li>
<li>Name it and tap Add.</li>
</ol>
<p class="install-note">This installs the PWA on your home screen.</p>
<p class="install-note">An iOS app is unlikely, since i do not have access to the Apple Developer Program membership and don't want to pay 100 Euros for it.</p>
</div>
</section>
<section class="install-footer-note">
This software is free and open source and will never have ads.
</section>
</main>
<footer class="app-footer">
<a class="footer-link" href="index.html">App</a>
<span class="footer-dot" aria-hidden="true">·</span>
<a
class="footer-link"
href="https://github.com/mojasp/CompleteMetronome"
target="_blank"
rel="noreferrer"
>
Source
</a>
<span class="footer-dot" aria-hidden="true">·</span>
<a
class="footer-link"
href="https://github.com/mojasp/CompleteMetronome/blob/master/LICENSE"
target="_blank"
rel="noreferrer"
>
AGPL
</a>
</footer>
</body>
</html>