-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
update.html
30 lines (26 loc) · 939 Bytes
/
update.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Update Available</title>
<link rel="stylesheet" href="./src/css/update.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/purify.min.js"></script>
</head>
<body>
<div id="update-container">
<button id="update-close-button">✕</button>
<div class="update-header">
<img src="./assets/icons/svg/perplexity.svg" alt="App Icon" class="app-icon" width="auto" height="auto"><br>
<h2>New Update Available (v<span id="latest-version"></span>)</h2>
</div>
<div class="release-notes">
<h3>What's New:</h3>
<div id="release-notes-content">
</div>
</div>
<button id="download-update-button">Download Update</button>
</div>
<script src="./src/js/renderer/update_renderer.js"></script>
</body>
</html>