Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@
"@tiptap/core": "^3.22.3",
"@tiptap/extension-link": "^3.22.3",
"@tiptap/extension-placeholder": "^3.22.3",
"@tiptap/extension-table": "^3.22.3",
"@tiptap/extension-table-cell": "^3.22.3",
"@tiptap/extension-table-header": "^3.22.3",
"@tiptap/extension-table-row": "^3.22.3",
"@tiptap/pm": "^3.22.3",
"@tiptap/react": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
Expand Down
4 changes: 4 additions & 0 deletions desktop/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ export default defineConfig({
"**/identity-key-help.spec.ts",
"**/key-import-reveal.spec.ts",
"**/navigation.spec.ts",
"**/documents-vault-empty.spec.ts",
"**/documents-editing-autosave.spec.ts",
"**/documents-wikilinks-outline.spec.ts",
"**/channels.spec.ts",
"**/channel-shared-header-backdrop.spec.ts",
"**/channel-composer-overflow.spec.ts",
Expand All @@ -46,6 +49,7 @@ export default defineConfig({
"**/profile-active-turn.spec.ts",
"**/config-bridge-screenshots.spec.ts",
"**/observer-feed-screenshots.spec.ts",
"**/documents-screenshots.spec.ts",
"**/core-memory-screenshots.spec.ts",
"**/activity-scope-label-screenshots.spec.ts",
"**/welcome-agent-modal-screenshots.spec.ts",
Expand Down
77 changes: 77 additions & 0 deletions desktop/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ keyring = { version = "3.6.3", default-features = false, features = ["sync-secre
# connection is dropped, which the plugin does immediately. Default features
# keep the pure-Rust zbus backend, matching the plugin (no libdbus needed).
notify-rust = "4"
# Filesystem watching for the Documents vault (distinct from notify-rust,
# which is desktop notifications).
notify = "8"
# Enable getUserMedia in the WebKitGTK webview (see src/linux_media.rs). Pinned
# to the exact version wry links so both resolve to one webkit2gtk-sys and we
# don't get duplicate symbols; bump in lockstep with wry.
Expand Down
9 changes: 9 additions & 0 deletions desktop/src-tauri/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ mod social;
mod team_snapshot;
mod teams;
mod updater;
mod vault_fs_read;
mod vault_fs_write;
pub mod vault_path;
mod vault_scope;
mod vault_watch;
mod window_chrome;
mod window_vibrancy;
mod workflows;
Expand Down Expand Up @@ -110,6 +115,10 @@ pub use social::*;
pub use team_snapshot::*;
pub use teams::*;
pub use updater::*;
pub use vault_fs_read::*;
pub use vault_fs_write::*;
pub use vault_scope::*;
pub use vault_watch::*;
pub use window_chrome::*;
pub use window_vibrancy::*;
pub use workflows::*;
Expand Down
Loading