update setting page

This commit is contained in:
duanfuxiang 2025-04-10 11:19:29 +08:00
parent 3493bccb43
commit f83e5b5a66
4 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,9 @@
releases: releases:
- version: "0.1.2"
features:
- "Added default mention settings for new chat"
- "Added mode settings for new chat"
- version: "0.1.1" - version: "0.1.1"
features: features:
- "Added agent prompt with three modes (ask, research, write)" - "Added agent prompt with three modes (ask, research, write)"

View File

@ -1,7 +1,7 @@
{ {
"id": "infio-copilot", "id": "infio-copilot",
"name": "Infio Copilot", "name": "Infio Copilot",
"version": "0.1.1", "version": "0.1.2",
"minAppVersion": "0.15.0", "minAppVersion": "0.15.0",
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes", "description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
"author": "Felix.D", "author": "Felix.D",

View File

@ -1,6 +1,6 @@
{ {
"name": "obsidian-infio-copilot", "name": "obsidian-infio-copilot",
"version": "0.1.1", "version": "0.1.2",
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes", "description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View File

@ -93,6 +93,7 @@ describe('parseSmartCopilotSettings', () => {
maxPrefixCharLimit: 4000, maxPrefixCharLimit: 4000,
maxSuffixCharLimit: 4000, maxSuffixCharLimit: 4000,
mode: 'ask', mode: 'ask',
defaultMention: 'none',
removeDuplicateMathBlockIndicator: true, removeDuplicateMathBlockIndicator: true,
removeDuplicateCodeBlockIndicator: true, removeDuplicateCodeBlockIndicator: true,
ripgrepPath: '', ripgrepPath: '',
@ -267,6 +268,7 @@ describe('settings migration', () => {
maxPrefixCharLimit: 4000, maxPrefixCharLimit: 4000,
maxSuffixCharLimit: 4000, maxSuffixCharLimit: 4000,
mode: 'ask', mode: 'ask',
defaultMention: 'none',
removeDuplicateMathBlockIndicator: true, removeDuplicateMathBlockIndicator: true,
removeDuplicateCodeBlockIndicator: true, removeDuplicateCodeBlockIndicator: true,
ripgrepPath: '', ripgrepPath: '',