You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/recent-doc/guest-js/index.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,11 @@ import { invoke } from '@tauri-apps/api/core'
13
13
/**
14
14
* Adds a document to this app's recent documents list.
15
15
*
16
+
* #### Requirements
17
+
*
18
+
* - `path` must be a local filesystem path.
19
+
* - For installer-based Windows builds, define handled extensions in `tauri.conf.json` at `bundle.fileAssociations` so associations are created on install and removed on uninstall.
Copy file name to clipboardExpand all lines: plugins/recent-doc/src/commands.rs
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,7 @@ impl Drop for ComGuard {
59
59
///
60
60
/// - This API is supported on Windows and macOS only.
61
61
/// - `path` should be a local filesystem path that the operating system can resolve.
62
+
/// - For installer-based Windows builds, declare handled extensions in `tauri.conf.json` under `bundle.fileAssociations` so install/uninstall manages associations automatically.
0 commit comments