v1.0.1 - Toolbar hotkeys, graph view improvements, close to tray, AI version snapshots, window resize fix

This commit is contained in:
Yuri Karamian
2026-02-09 23:13:57 +01:00
parent d6caee38b2
commit c105b83570
14 changed files with 226 additions and 76 deletions
+5 -1
View File
@@ -2,10 +2,14 @@
import { showInfo, appConfig } from '$lib/stores/app';
import { getVaultStats } from '$lib/api';
import { openUrl } from '@tauri-apps/plugin-opener';
import { getVersion } from '@tauri-apps/api/app';
import type { VaultStats } from '$lib/types';
let stats = $state<VaultStats | null>(null);
let activeTab = $state<'about' | 'shortcuts'>('shortcuts');
let appVersion = $state('...');
getVersion().then(v => appVersion = v).catch(() => appVersion = '0.0.0');
function close() {
$showInfo = false;
@@ -66,7 +70,7 @@
</svg>
</div>
<h3 class="app-name">HelixNotes</h3>
<p class="app-version">v1.0.0</p>
<p class="app-version">v{appVersion}</p>
<p class="app-description">A local-first markdown note-taking app.</p>
{#if stats}