prompt user for update when a new version is released

This commit is contained in:
Abdenasser 2024-11-06 10:00:02 +01:00
parent 332bafbf1d
commit 73db9d42a6
5 changed files with 67 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "macos-task-manager",
"version": "1.0.4",
"version": "1.0.5",
"description": "",
"type": "module",
"scripts": {

2
src-tauri/Cargo.lock generated
View File

@ -2009,7 +2009,7 @@ dependencies = [
[[package]]
name = "macos-task-manager"
version = "1.0.4"
version = "1.0.5"
dependencies = [
"serde",
"serde_json",

View File

@ -1,6 +1,6 @@
[package]
name = "macos-task-manager"
version = "1.0.4"
version = "1.0.5"
description = "A Tauri App"
authors = ["you"]
edition = "2021"

View File

@ -8,7 +8,7 @@
},
"package": {
"productName": "NeoHtop",
"version": "1.0.4"
"version": "1.0.5"
},
"tauri": {
"allowlist": {

View File

@ -6,7 +6,9 @@
import Fa from "svelte-fa";
let version = "";
let latestVersion = "";
let showInfo = false;
let hasUpdate = false;
const ASCII_ART = `
███╗ ██╗███████╗ ██████╗ ██╗ ██╗████████╗ ██████╗ ██████╗
@ -24,31 +26,55 @@
stack: ["Tauri", "Rust", "Svelte", "TypeScript"],
};
async function checkLatestVersion() {
try {
const response = await fetch(
"https://api.github.com/repos/abdenasser/neohtop/releases/latest",
);
const data = await response.json();
latestVersion = data.tag_name.replace("v", "");
hasUpdate = version && latestVersion && version !== latestVersion;
} catch (error) {
console.error("Failed to check latest version:", error);
}
}
onMount(async () => {
version = await getVersion();
await checkLatestVersion();
});
</script>
<div class="app-info">
<ThemeSwitcher />
<button
class="info-button"
class:info-button={true}
class:has-update={hasUpdate}
on:click={() => (showInfo = !showInfo)}
aria-label="Toggle app info"
>
<span class="icon">
<span class="icon" class:update-available={hasUpdate}>
<Fa icon={faInfo} />
</span>
</button>
{#if showInfo}
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div class="info-panel" on:mouseleave={() => (showInfo = false)}>
<div class="info-content">
<pre class="ascii-art">{ASCII_ART}</pre>
<div class="details">
<div class="detail-row">
<span>NeoHtop v{version}</span>
{#if hasUpdate}
<a
href={`https://github.com/abdenasser/neohtop/releases/latest`}
class="update-button"
target="_blank"
rel="noopener noreferrer"
>
Update to v{latestVersion}
</a>
{/if}
</div>
<div class="detail-row">
<span class="label">app</span>
@ -106,6 +132,10 @@
color: var(--subtext0);
}
.icon.update-available {
color: var(--red);
}
.info-panel {
position: absolute;
top: 100%;
@ -167,4 +197,34 @@
color: var(--text);
font-weight: 500;
}
.info-button.has-update {
border-color: var(--red);
}
.info-button.has-update:hover {
background: color-mix(in srgb, var(--red) 10%, transparent);
}
.info-button.has-update .icon {
color: var(--red);
}
.update-button {
display: inline-flex;
align-items: center;
padding: 4px 8px;
font-size: 12px;
color: var(--base);
background: var(--red);
border-radius: 4px;
text-decoration: none;
margin-left: 8px;
transition: all 0.2s ease;
}
.update-button:hover {
background: color-mix(in srgb, var(--red) 90%, white);
transform: translateY(-1px);
}
</style>