This commit is contained in:
Logan Yang 2025-07-01 15:49:45 -07:00 committed by GitHub
parent ccf2c3f34a
commit 276dd992d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 9 deletions

View file

@ -1,7 +1,7 @@
{
"id": "copilot",
"name": "Copilot",
"version": "2.9.1",
"version": "2.9.2",
"minAppVersion": "0.15.0",
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
"author": "Logan Yang",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "obsidian-copilot",
"version": "2.9.1",
"version": "2.9.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "obsidian-copilot",
"version": "2.9.1",
"version": "2.9.2",
"license": "AGPL-3.0",
"dependencies": {
"@dnd-kit/core": "^6.3.1",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-copilot",
"version": "2.9.1",
"version": "2.9.2",
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
"main": "main.js",
"scripts": {

View file

@ -162,8 +162,8 @@ export function ChatControls({
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost2" size="fit" className="tw-ml-1">
{selectedChain === ChainType.LLM_CHAIN && "chat"}
{selectedChain === ChainType.VAULT_QA_CHAIN && "vault QA"}
{selectedChain === ChainType.LLM_CHAIN && "chat (free)"}
{selectedChain === ChainType.VAULT_QA_CHAIN && "vault QA (free)"}
{selectedChain === ChainType.COPILOT_PLUS_CHAIN && (
<div className="tw-flex tw-items-center tw-gap-1">
<Sparkles className="tw-size-4" />
@ -180,14 +180,14 @@ export function ChatControls({
handleModeChange(ChainType.LLM_CHAIN);
}}
>
chat
chat (free)
</DropdownMenuItem>
<DropdownMenuItem
onSelect={() => {
handleModeChange(ChainType.VAULT_QA_CHAIN);
}}
>
vault QA
vault QA (free)
</DropdownMenuItem>
{isPlusUser ? (
<DropdownMenuItem

View file

@ -85,5 +85,6 @@
"2.8.8": "0.15.0",
"2.8.9": "0.15.0",
"2.9.0": "0.15.0",
"2.9.1": "0.15.0"
"2.9.1": "0.15.0",
"2.9.2": "0.15.0"
}