mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
chore(manifest): bump minAppVersion to 1.7.2 and declare mobile support (#2425)
- minAppVersion 1.4.0 -> 1.7.2: matches the actual Obsidian APIs the code already calls (Workspace.revealLeaf needs 1.7.2; FileManager.processFrontMatter needs 1.4.4). Users on Obsidian < 1.7.2 were already hitting runtime errors on those code paths; stating an honest minimum prevents the install. - Add isDesktopOnly: false: Chat, Vault QA, and Plus modes work on mobile (extensive Platform.isMobile guards already in place across dbOperations, vectorStoreManager, indexEventHandler, CopilotView, etc.). Addresses two warnings from the Obsidian plugin preview check: * "Manifest is missing optional but recommended field: isDesktopOnly" * "'Workspace.revealLeaf' requires Obsidian v1.7.2, but minAppVersion is 1.4.0" * "'FileManager.processFrontMatter' requires Obsidian v1.4.4, but minAppVersion is 1.4.0" Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
602f6d6ac0
commit
ca885b03ac
1 changed files with 2 additions and 1 deletions
|
|
@ -2,7 +2,8 @@
|
|||
"id": "copilot",
|
||||
"name": "Copilot",
|
||||
"version": "3.2.8",
|
||||
"minAppVersion": "1.4.0",
|
||||
"minAppVersion": "1.7.2",
|
||||
"isDesktopOnly": false,
|
||||
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
|
||||
"author": "Logan Yang",
|
||||
"authorUrl": "https://twitter.com/logancyang",
|
||||
|
|
|
|||
Loading…
Reference in a new issue