mirivlad
a1d7c7b88b
feat: PluginPage iframe bridge + CallPluginFunction binding
...
- PluginPage.svelte: bidirectional postMessage bridge with iframe
- Handles: ready, get-events, create-event, update-event, delete-event
- Queues messages until iframe is ready
- Exports handleDrop() for drag-and-drop from parent
- CallPluginFunction binding: calls arbitrary Lua functions on active plugins
- Supports dotted paths: 'calendar.create_event' → _G.calendar.create_event
- JSON params → Lua table conversion
- LuaVM: added DoString(), LState(), VM() public methods
- Plugin: added VM() getter for external access
2026-06-07 16:37:32 +08:00
mirivlad
3f787ec66d
fix: only plugins with on_install are managed - skip others entirely
...
- Discover(): skip plugins without on_install hook (not shown in UI)
- Enable(): simplified - just check Installed flag
- SyncConfig(): simplified - no HasInstall special case
- Frontend: simplified toggle logic (only installed/uninstalled states)
- Tests: updated all test fixtures to include on_install hook
2026-06-07 15:55:04 +08:00
mirivlad
e99ff984b1
feat: plugin install/uninstall lifecycle + UI buttons
...
- AppConfig: add InstalledPlugins []string
- Manager.Discover(): no config dependency, all plugins start inactive
- Manager.SyncConfig(): apply installed/enabled state from AppConfig
- Manager.Enable(): works for plugins without on_install hook
- Manager.Install/Uninstall(): run on_install/on_uninstall hooks
- ActivatePlugin: skip if HasInstall && !Installed
- ReloadPlugins: Discover → SyncConfig → InitRuntimes
- Bindings: InstallPlugin, UninstallPlugin
- SettingsPlugins: install/uninstall buttons, toggle only after install
- Calendar: migration moved from on_init to on_install, on_uninstall drops tables
- Tests: all 12 pass (manager + runtime + calendar)
2026-06-07 15:28:37 +08:00
mirivlad
b80941f908
feat: плагин-система Lua + Calendar reference plugin
...
- Lua VM runtime: gopher-lua с песочницей, хуки on_init/on_tick/on_shutdown
- API: verstak.node.* / verstak.db.* / verstak.config.* / verstak.state.*
- API: verstak.worklog.* / verstak.activity.* / verstak.file.*
- API: verstak.schedule.* / verstak.http.* / verstak.ui.*
- Менеджер плагинов: жизненный цикл, инициализация, шаблоны
- Scheduler: фоновые задачи с интервалами
- PluginPage.svelte: контейнер для iframe-панелей плагинов
- Calendar plugin: миграция, категории CRUD, события CRUD
- Calendar: расширенный рекарренс (daily/weekly/monthly/yearly)
- Calendar: связь с узлами Верстака, напоминания, HTTP-праздники
- Calendar: Lua-тест-сьют (15 тестов), Go-интеграционный тест
- fix: query_row использует реальные Column() вместо guessColumns
2026-06-07 14:59:46 +08:00
mirivlad
8cbc87cdad
feat: настройки Browser Bridge в Verstak и extension
...
Verstak (GUI):
- SettingsBrowserBridge.svelte — новая секция в Settings:
toggle вкл/выкл сервера, поле порта (default 9786),
статус (Запущен/Остановлен), кнопки Сохранить/Перезапустить
- SettingsWindow + SettingsSidebar — подключена секция browserBridge
- BridgeConfig: добавлено поле Enabled (default true)
- RestartBridge() — новый биндинг для перезапуска сервера
- initVault: проверяет bc.Enabled перед запуском bridge
Extension (Chrome + Firefox):
- popup: панель настроек с полем порта (default 9786)
- кнопка «Проверить» — fetch /api/ping с таймаутом 3с
- кнопка «Сохранить» — сохраняет port в chrome.storage.local
- статус соединения: ✓ Сервер отвечает / ✗ Недоступен / ✗ Таймаут
- оба расширения работают только с 127.0.0.1
2026-06-07 01:03:35 +08:00
mirivlad
1cc0c407b1
fix: исправление 6 пунктов из ревью
...
Critical:
- bridge: AutoGenPort=false по умолчанию, не генерируем secret если пустой
→ extension и bridge совпадают на port 9786 и empty secret
- bridgeConfig: убрана авто-генерация secret, убран secret из BridgeInfo
High:
- extension/background.js + extension-firefox/background.js:
все chrome.* listeners вынесены в global scope (не внутри onInstalled/onStartup)
→ MV3 service worker корректно перезапускается
- UI: acceptBrowserEvent вызывает AcceptBrowserEvent, attachBrowserEvent вызывает
AttachBrowserEventToNode (к текущему selectedNode), а не DismissBrowserEvent
- watcher: при Create проверяется isUnderVault(absPath, vaultRoot) —
если файл уже в vault, используется AddExternal вместо CopyIntoVault
→ нет дублирования файлов с timestamp-суффиксом
Medium:
- bridge.Event: добавлено поле DeviceID, handleEvents обогащает events из batch.DeviceID
→ device_id сохраняется в DB как chrome-*/firefox-*, а не evt_*
- config: FileWatcher изменён на *bool — nil означает default true,
false = явно выключено → старые config.json без поля file_watcher получают true
2026-06-07 00:15:34 +08:00
mirivlad
fc429ac26e
feat: ШАГ 4 — UI для browser events в TodayScreen
...
Go bindings:
- bindings_browser.go: ListBrowserEvents, CountPendingBrowserEvents,
AcceptBrowserEvent, DismissBrowserEvent, AttachBrowserEventToNode
Frontend:
- BrowserEvents.svelte — компонент списка событий с действиями
(принять/прикрепить/удалить), статусы, домены, длительность
- TodayScreen.svelte — новая вкладка «Браузер» с badge
- App.svelte — loadBrowserEvents, acceptBrowserEvent,
dismissBrowserEvent, attachBrowserEvent handlers
2026-06-06 18:58:39 +08:00
mirivlad
f88376264d
fix: reorder journal worklog sections
2026-06-06 02:53:36 +08:00
mirivlad
40c0953904
fix: skip deleted entries in navigation history
2026-06-06 02:42:20 +08:00
mirivlad
0cd8a79049
feat: restore global search in app header
2026-06-06 02:39:29 +08:00
mirivlad
cf770262e5
fix: reset capture drag state reliably
2026-06-06 02:30:54 +08:00
mirivlad
a37afd3b67
fix: trash integrity for TypeFile nodes — file record soft-delete, correct preview/restore
2026-06-05 17:31:18 +08:00
mirivlad
64e6c6f735
fix: trash file preview, visual CSS, virtual folder model
...
- Added resolveTrashPath() backend function: walks ancestor chain to find
files inside deleted/moved folders (flat trash directory)
- Added TrashFsPath to TrashNodeDTO, computed during ListTrash via
parent-to-child propagation of physical trash path
- Fixed visual CSS for trash rows: button reset (no white bg, transparent,
inherit font/color), hover styles match app dark theme
- Root view filters out descendant nodes (only shows top-level items)
2026-06-05 17:05:35 +08:00
mirivlad
5257789a4d
fix: trash duplicate path, journal tabs, today undefined, mouse back, inbox search
...
- Trash: removed duplicate fsPath display, folders/files open by clicking icon/name
- Trash: removed separate 'Open' button, only restore/delete right-aligned
- Trash: added ReadTrashFileContent binding + preview for files
- Trash: breadcrumb path under title, compact date display
- Journal: split into 'Предложения' + 'Журнал работы' tabs
- Journal: suggestions tab opens by default
- Today: fixed undefined in feed (null-guard on eventType/title)
- Today: improved event type label readability (blue badge style)
- Today: folder_deleted clicks navigate to trash
- Mouse Back: added mouseup fallback for Wails compat, handle button 3/4
- SearchNodes: case-insensitive with LOWER()
- Inbox assign: added search hint placeholder
2026-06-05 16:49:00 +08:00
mirivlad
c512ada386
cleanup: remove stale frontend-dist assets, fix warnings
2026-06-05 16:21:21 +08:00
mirivlad
2ed2ecf77a
Today screen: tabs (feed, suggestions, in-progress, captured) + inbox sort/group
...
- Новый экран 'Сегодня' разбит на 4 вкладки: Лента, Предложения,
В работе, Захвачено
- Лента отображает события за сегодня с кликабельными сущностями
- Предложения вынесены в отдельную вкладку (только предложения)
- В работе: изменённые файлы/заметки/действия за сегодня с сортировками
- Захвачено: захваченные элементы за сегодня с сортировками
- Неразобранное: сортировка по дате/имени/типу с направлением
- Неразобранное: переключатель 'Группировать по месту захвата'
- TodayScreen.svelte: новый компонент с 4 вкладками
- Новые i18n ключи для вкладок и сортировок
- Backend: ListTodayInProgress, ListTodayCaptures bindings
- Все переходы из вкладок ведут в соответствующее место программы
2026-06-05 16:17:22 +08:00
mirivlad
c8aaf36533
fix: stabilize trash navigation and action icons
2026-06-05 14:41:40 +08:00
mirivlad
1fa009b1e2
feat: complete trash restore and batch actions
2026-06-05 12:43:30 +08:00
mirivlad
10b287de7b
feat: aggregate journals across node subtrees
2026-06-05 12:37:25 +08:00
mirivlad
23f517dee3
feat: simplify inbox actions and group task tabs
2026-06-05 12:32:36 +08:00
mirivlad
6d15639b41
fix: normalize bare URLs in capture flow
2026-06-05 12:29:19 +08:00
mirivlad
56ef211418
chore: move app icons into frontend assets
2026-06-05 12:25:47 +08:00
mirivlad
22b05f57b4
fix: show inbox capture target context
2026-06-05 08:10:33 +08:00
mirivlad
a8df9d118c
fix: hide explorer action for inbox links
2026-06-05 08:07:39 +08:00
mirivlad
91b5629e01
fix: open inbox artifacts by type
2026-06-05 08:06:06 +08:00
mirivlad
0e5d13ff01
fix: ignore global hotkeys in editable fields
2026-06-05 07:47:07 +08:00
mirivlad
f112e9a2d0
feat: add local inbox and links tabs
2026-06-05 07:44:38 +08:00
mirivlad
c1dfc456ec
feat: unify frontend capture pipeline
2026-06-05 07:41:15 +08:00
mirivlad
9e70e36f7f
feat: add native clipboard capture bridge
2026-06-05 07:34:45 +08:00
mirivlad
6eaa4cda49
feat: assign and delete inbox artifacts
2026-06-05 02:15:27 +08:00
mirivlad
a96a316883
feat: capture files and images in inbox
2026-06-05 02:06:21 +08:00
mirivlad
326f6f283d
feat: capture clipboard links in inbox gui
2026-06-05 01:55:38 +08:00
mirivlad
44d0be2649
feat: add text and url inbox capture
2026-06-05 01:46:22 +08:00
mirivlad
d6ef3a973a
feat: model inbox capture artifacts
2026-06-05 01:40:08 +08:00
mirivlad
2e86229350
fix: restrict inbox to captured artifacts
2026-06-05 01:35:27 +08:00
mirivlad
cc83cd3476
feat: expose trash in gui
2026-06-05 01:05:57 +08:00
mirivlad
035f877280
feat: add interactive inbox view
2026-06-05 00:59:57 +08:00
mirivlad
02d68ca3f4
feat: edit suggestions before accepting worklog
2026-06-05 00:53:13 +08:00
mirivlad
eb6a861310
feat: edit and delete worklog entries
2026-06-05 00:48:12 +08:00
mirivlad
cb6c06fdc5
fix: style workspace settings actions
2026-06-04 19:34:03 +08:00
mirivlad
767c03ba8c
test: add rendered gui smoke harness
2026-06-04 18:59:07 +08:00
mirivlad
cc157a2d36
fix: stabilize settings icons and back label
2026-06-04 07:47:40 +08:00
mirivlad
c40d8c9dd3
fix: show sync warnings in settings
2026-06-04 03:53:17 +08:00
mirivlad
bb0bb608e3
chore: sync english locale keys
2026-06-04 03:44:25 +08:00
mirivlad
3c6bc097e1
fix: show manual sync conflicts in gui
2026-06-04 03:39:52 +08:00
mirivlad
58795b66b2
fix: keep default templates and plugins folder working
2026-06-04 03:28:32 +08:00
mirivlad
a69dc845e6
fix: vault init on startup; add nil guards to all bindings; fix SA_ONSTACK signal crash; deduplicate settings button; add i18n for vault error
2026-06-04 00:37:14 +08:00
mirivlad
f92394e3d7
feat: settings window polish, sync widget fix, dark form controls
...
- Fix: settings overlay uses on:click|self so sidebar clicks don't close it
- Fix: openSettings(section) supports opening at specific tab
- Fix: 'Настроить' opens Settings → Синхронизация instead of Общие
- Style: dark theme select with custom arrow, global :global() CSS
- Style: settings cards, section descriptions, button/layout polish
- Style: settings gear buttons (icon-button pattern, 32px, soft hover)
- Style: settings sidebar with disabled stubs, consistent icons
- i18n: add generalDesc, workspaceDesc, appearance, localization keys
2026-06-03 23:09:40 +08:00
mirivlad
e30a75c5a0
fix: openActivityTarget navigates to parent folder and previews files
...
- resolveActivityTarget uses 'targetId'/'targetPath' for all types
(note, file, folder) instead of type-specific property names
- openActivityTarget for files: resolves the file node via
GetNodeDetail, navigates to its parent folder in the Files tab,
then auto-previews the file if it's a previewable type
- For root-level files (no parent_id): loads root items
- Removed spurious OpenFolder(targetPath) call that silently failed
because OpenFolder expects a node ID, not a filesystem path
2026-06-03 17:32:18 +08:00
mirivlad
4ec03c849f
fix: openActivityTarget now loads fileItems before showing Files tab
...
selectNode() resets fileItems=[] and activeTab='overview'. Setting
activeTab='files' programmatically does not trigger the tab click
handler that calls loadFolder(), so the file tree stays empty.
Fix: explicitly call await loadFolder(selectedNode.id) in the files
branch of openActivityTarget.
Also: unified resolveActivityTarget return shape to always use
targetId/targetPath regardless of targetType.
2026-06-03 17:23:42 +08:00