diff --git a/CHANGELOG.yaml b/CHANGELOG.yaml index 6429bf0..b61d88f 100644 --- a/CHANGELOG.yaml +++ b/CHANGELOG.yaml @@ -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" diff --git a/manifest.json b/manifest.json index 0c003c5..0766c5b 100644 --- a/manifest.json +++ b/manifest.json @@ -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", diff --git a/package.json b/package.json index d7e86ff..dc46d77 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/components/chat-view/ChatView.tsx b/src/components/chat-view/ChatView.tsx index 12a12aa..e8bc124 100644 --- a/src/components/chat-view/ChatView.tsx +++ b/src/components/chat-view/ChatView.tsx @@ -165,7 +165,7 @@ const Chat = forwardRef((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([]) useEffect(() => {