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
- MessageThread: Markdown links open in browser (β) or default app (π)
for local file paths. Agent instructed to always use Markdown link
syntax for paths and URLs in responses.
- plugins/loader: auto-install plugin Python deps via uv on first load
- plugins/types: add dependencies[] field to PluginManifest
- lib.rs: pass RAGDOLL_UV env var + strip Tesseract from PATH
- tauri.conf.json: bump version to 0.2.1
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
// βββ Link helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
24
+
25
+
/** True when href points at a local file rather than a web URL. */
26
+
functionisLocalFilePath(href: string): boolean{
27
+
if(href.startsWith('file://'))returntrue;
28
+
if(/^[A-Za-z]:[/\\]/.test(href))returntrue;// Windows: C:\β¦ or C:/β¦
0 commit comments