diff --git a/CHANGELOG.yaml b/CHANGELOG.yaml index daaaf4c..d441d61 100644 --- a/CHANGELOG.yaml +++ b/CHANGELOG.yaml @@ -1,4 +1,9 @@ releases: + - version: "0.1.2" + features: + - "Added default mention settings for new chat" + - "Added mode settings for new chat" + - version: "0.1.1" features: - "Added agent prompt with three modes (ask, research, write)" diff --git a/manifest.json b/manifest.json index dab2f8f..9c3f4ab 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "infio-copilot", "name": "Infio Copilot", - "version": "0.1.1", + "version": "0.1.2", "minAppVersion": "0.15.0", "description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes", "author": "Felix.D", diff --git a/package.json b/package.json index b0de528..37055f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "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", "main": "main.js", "scripts": { diff --git a/src/types/settings.test.ts b/src/types/settings.test.ts index b38d547..6eaa37c 100644 --- a/src/types/settings.test.ts +++ b/src/types/settings.test.ts @@ -93,6 +93,7 @@ describe('parseSmartCopilotSettings', () => { maxPrefixCharLimit: 4000, maxSuffixCharLimit: 4000, mode: 'ask', + defaultMention: 'none', removeDuplicateMathBlockIndicator: true, removeDuplicateCodeBlockIndicator: true, ripgrepPath: '', @@ -267,6 +268,7 @@ describe('settings migration', () => { maxPrefixCharLimit: 4000, maxSuffixCharLimit: 4000, mode: 'ask', + defaultMention: 'none', removeDuplicateMathBlockIndicator: true, removeDuplicateCodeBlockIndicator: true, ripgrepPath: '',