2023-04-10 20:53:44 +00:00
|
|
|
<head>
|
2023-06-25 23:42:51 +00:00
|
|
|
<link rel="stylesheet" href="./style.css" type="text/css" />
|
2023-04-10 20:53:44 +00:00
|
|
|
|
2023-06-25 23:42:51 +00:00
|
|
|
<style>
|
2023-04-10 20:53:44 +00:00
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
box-sizing: border-box;
|
2023-06-25 23:42:51 +00:00
|
|
|
min-height: 100%;
|
2023-04-10 20:53:44 +00:00
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
gap: 0.5em;
|
|
|
|
margin-top: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.5em;
|
2023-06-25 23:42:51 +00:00
|
|
|
color: var(--fg);
|
2023-04-10 20:53:44 +00:00
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: bold;
|
|
|
|
transition: filter 0.2 ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover,
|
|
|
|
button:active {
|
|
|
|
filter: brightness(0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
|
|
|
background-color: #248046;
|
|
|
|
}
|
|
|
|
|
|
|
|
.red {
|
|
|
|
background-color: #ed4245;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<section>
|
|
|
|
<h1>Update Available</h1>
|
2023-07-13 17:03:13 +00:00
|
|
|
<p>There's a new update for Vesktop! Update now to get new fixes and features!</p>
|
2023-04-10 20:53:44 +00:00
|
|
|
<p>
|
|
|
|
Current: <span id="current"></span>
|
|
|
|
<br />
|
|
|
|
Latest: <span id="latest"></span>
|
|
|
|
</p>
|
2023-06-25 23:42:51 +00:00
|
|
|
|
|
|
|
<h2>Changelog</h2>
|
|
|
|
<p id="changelog">Loading...</p>
|
2023-04-10 20:53:44 +00:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<label id="disable-remind">
|
|
|
|
<input type="checkbox" />
|
|
|
|
<span>Do not remind again for </span>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<div class="buttons">
|
|
|
|
<button name="download" class="green">Download Update</button>
|
|
|
|
<button name="close" class="red">Close</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script type="module">
|
|
|
|
const data = await Updater.getData();
|
|
|
|
document.getElementById("current").textContent = data.currentVersion;
|
|
|
|
document.getElementById("latest").textContent = data.latestVersion;
|
|
|
|
|
|
|
|
document.querySelector("#disable-remind > span").textContent += data.latestVersion;
|
|
|
|
|
|
|
|
function checkDisableRemind() {
|
|
|
|
const checkbox = document.querySelector("#disable-remind > input");
|
|
|
|
if (checkbox.checked) {
|
|
|
|
Updater.ignore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const onClicks = {
|
|
|
|
download() {
|
|
|
|
checkDisableRemind();
|
|
|
|
Updater.download();
|
|
|
|
},
|
|
|
|
close() {
|
|
|
|
checkDisableRemind();
|
|
|
|
Updater.close();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const name in onClicks) {
|
|
|
|
document.querySelectorAll(`button[name="${name}"]`).forEach(button => {
|
|
|
|
button.addEventListener("click", onClicks[name]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
2023-06-25 23:42:51 +00:00
|
|
|
|
|
|
|
<script type="module">
|
|
|
|
import { micromark } from "https://esm.sh/micromark@3?bundle";
|
|
|
|
import { gfm, gfmHtml } from "https://esm.sh/micromark-extension-gfm@2?bundle";
|
|
|
|
|
|
|
|
const changelog = (await Updater.getData()).release.body;
|
|
|
|
if (changelog)
|
|
|
|
document.getElementById("changelog").innerHTML = micromark(changelog, {
|
|
|
|
extensions: [gfm()],
|
|
|
|
htmlExtensions: [gfmHtml()]
|
|
|
|
})
|
|
|
|
.replace(/h1>/g, "h3>")
|
|
|
|
.replace(/<a /g, '<a target="_blank" ');
|
|
|
|
</script>
|