feat: add changelog link to info panel

This commit is contained in:
2026-01-20 16:33:09 -08:00
parent c37c530f89
commit 599ed082ad
+8 -1
View File
@@ -20,6 +20,7 @@
discord: "https://chat.nhcarrigan.com", discord: "https://chat.nhcarrigan.com",
website: "https://nhcarrigan.com", website: "https://nhcarrigan.com",
license: "https://docs.nhcarrigan.com/legal/license/", license: "https://docs.nhcarrigan.com/legal/license/",
changelog: "https://git.nhcarrigan.com/nhcarrigan/hikari-desktop/releases",
}; };
</script> </script>
@@ -67,9 +68,15 @@
<div> <div>
<h3 class="font-medium text-gray-200 mb-2">Version</h3> <h3 class="font-medium text-gray-200 mb-2">Version</h3>
<p class="text-gray-400"> <p class="text-gray-400 mb-1">
{appVersion || "Loading..."} {appVersion || "Loading..."}
</p> </p>
<button
onclick={() => openUrl(links.changelog)}
class="text-[var(--accent-primary)] hover:text-[var(--accent-primary-hover)] transition-colors underline"
>
View Changelog
</button>
</div> </div>
<div> <div>