mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
2.9.2 (#1595)
This commit is contained in:
parent
ccf2c3f34a
commit
276dd992d8
5 changed files with 10 additions and 9 deletions
|
|
@ -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
4
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue