Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
dcec5f5
feat(tabs): new tabs nest under current; preserve subtree on tab move…
AesaKamar Aug 13, 2025
f37acfe
feat(tree): Tab to indent, Shift+Tab to outdent selected node; sync C…
AesaKamar Aug 13, 2025
3dec630
fix(shortcuts): indent under previous sibling and expand parent; prev…
AesaKamar Aug 13, 2025
fa7961e
feat(context-menu): add Sort Children (A→Z); recursively sort subtree…
AesaKamar Aug 13, 2025
4f92a53
feat(shortcuts): Alt+Shift+Up/Down to move node among siblings; sync …
AesaKamar Aug 13, 2025
24f7290
feat(cmd): Cmd+Shift+1 locates active tab node in Link Map; add locat…
AesaKamar Aug 13, 2025
e8a8018
fix(render): show quotes literally in titles; stop escaping and rende…
AesaKamar Aug 13, 2025
84cdb6a
feat(ui): show full tab title on hover with 0.3s fade-in tooltip; kee…
AesaKamar Aug 13, 2025
7a973f6
feat(window): persist Link Map popup bounds (left/top/width/height) a…
AesaKamar Aug 13, 2025
dff2055
refactor(ui): use native title tooltip for tab names; remove custom t…
AesaKamar Aug 13, 2025
eecdee5
chore(ui): remove inline action buttons; enable triple-click on title…
AesaKamar Aug 13, 2025
621e842
feat(icon): fallback to chrome _favicon service when tab favIconUrl f…
AesaKamar Aug 13, 2025
1dfe032
feat(icon): add Google s2 favicon fallback after extension _favicon; …
AesaKamar Aug 13, 2025
8a8c817
fix(icon): remove inline onerror to satisfy CSP; bind error handler i…
AesaKamar Aug 13, 2025
9269c84
feat(settings): add Show Inline Actions toggle; wire through options …
AesaKamar Aug 13, 2025
659ffff
feat: restore tabs position
AesaKamar Aug 13, 2025
2088a22
fix: hover inline actions to the right
AesaKamar Aug 14, 2025
c69a8ee
fix: flickering issue with hover icon due to timer
AesaKamar Aug 18, 2025
84ec627
fix: open external links nested under current tab
AesaKamar Aug 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
// 使用vscode扩展prettier作为默认格式化工具
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
Expand Down
Loading