v1.1.0 - View mode, daily notes, tag management, math support, and more

This commit is contained in:
Yuri Karamian
2026-02-15 21:13:16 +01:00
parent 2697e10907
commit 6e75468420
21 changed files with 964 additions and 179 deletions
+3 -1
View File
@@ -9,6 +9,8 @@
action: () => void;
}
const modKey = navigator.platform.startsWith('Mac') ? '⌘' : 'Ctrl';
let query = $state('');
let selectedIndex = $state(0);
let inputEl = $state<HTMLInputElement>(null!);
@@ -17,7 +19,7 @@
{
id: 'search',
label: 'Search Notes',
shortcut: 'Ctrl+F',
shortcut: `${modKey}+F`,
action: () => {
$showCommandPalette = false;
$showSearch = true;