Skip to content

Commit 9dafb04

Browse files
authored
Add updater.html for application updates
1 parent 7c46306 commit 9dafb04

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

web/updater.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>ProStore Web</title>
5+
<link rel="stylesheet" href="styles.css">
6+
<script src="installer.js"></script>
7+
</head>
8+
<body>
9+
<main>
10+
<div class="panel">
11+
<img class="logo-img" src="https://github.com/ProStore-iOS/ProStore/raw/main/icon.png"><br>
12+
13+
<!-- Download button (visible initially) -->
14+
<button class="download-button" onclick="startDownload();">Download</button>
15+
16+
<!-- Install button (hidden until download completes) -->
17+
<button class="install-button" onclick="performInstall();" style="display:none;">Update</button><br>
18+
19+
<a class="advanced-href" href="advanced_installer.html">Advanced Installer</a>
20+
</div>
21+
</main>
22+
<script>
23+
pulse('reset');
24+
loadingImg(0);
25+
</script>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)