update release log

This commit is contained in:
duanfuxiang 2025-04-30 10:12:34 +08:00
parent c31f5fbe19
commit dfdb21e832
4 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,7 @@
releases:
- version: "0.2.2"
features:
- hotfix, fix default view to chat view
- version: "0.2.1"
features:
- "Added custom mode functionality, allowing users to create their own modes"

View File

@ -1,7 +1,7 @@
{
"id": "infio-copilot",
"name": "Infio Copilot",
"version": "0.2.1",
"version": "0.2.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",

View File

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

View File

@ -165,7 +165,7 @@ const Chat = forwardRef<ChatRef, ChatProps>((props, ref) => {
}
}
const [tab, setTab] = useState<'chat' | 'commands' | 'custom-mode'>('custom-mode')
const [tab, setTab] = useState<'chat' | 'commands' | 'custom-mode'>('chat')
const [selectedSerializedNodes, setSelectedSerializedNodes] = useState<BaseSerializedNode[]>([])
useEffect(() => {