diff --git a/manifest.json b/manifest.json index ffba91e0..55893d7a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "copilot", "name": "Copilot", - "version": "2.8.6", + "version": "2.8.7", "minAppVersion": "0.15.0", "description": "An AI Copilot in Obsidian.", "author": "Logan Yang", diff --git a/package-lock.json b/package-lock.json index b30b9b81..7a0cc291 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-copilot", - "version": "2.8.6", + "version": "2.8.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-copilot", - "version": "2.8.6", + "version": "2.8.7", "license": "AGPL-3.0", "dependencies": { "@dnd-kit/core": "^6.3.1", diff --git a/package.json b/package.json index eb5ed48b..e62b3619 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-copilot", - "version": "2.8.6", + "version": "2.8.7", "description": "ChatGPT integration for Obsidian", "main": "main.js", "scripts": { diff --git a/src/settings/v2/SettingsMainV2.tsx b/src/settings/v2/SettingsMainV2.tsx index d2cf2a66..115eab24 100644 --- a/src/settings/v2/SettingsMainV2.tsx +++ b/src/settings/v2/SettingsMainV2.tsx @@ -4,6 +4,7 @@ import { TabContent, TabItem, type TabItem as TabItemType } from "@/components/u import { TabProvider, useTab } from "@/contexts/TabContext"; import CopilotPlugin from "@/main"; import { resetSettings } from "@/settings/model"; +import { CommandSettings } from "@/settings/v2/components/CommandSettings"; import { checkLatestVersion, isNewerVersion } from "@/utils"; import { Cog, Command, Cpu, Database, Wrench } from "lucide-react"; import React, { useEffect, useState } from "react"; @@ -11,7 +12,6 @@ import { AdvancedSettings } from "./components/AdvancedSettings"; import { BasicSettings } from "./components/BasicSettings"; import { ModelSettings } from "./components/ModelSettings"; import { QASettings } from "./components/QASettings"; -import { CommandSettings } from "@/settings/v2/components/CommandSettings"; const TAB_IDS = ["basic", "model", "QA", "command", "advanced"] as const; type TabId = (typeof TAB_IDS)[number]; @@ -120,7 +120,14 @@ const SettingsMainV2: React.FC = ({ plugin }) => {
Copilot Settings - v{plugin.manifest.version} + + v{plugin.manifest.version} + {updateError ? ( {" "} diff --git a/versions.json b/versions.json index a4a75f8e..13362be3 100644 --- a/versions.json +++ b/versions.json @@ -80,5 +80,6 @@ "2.8.3": "0.15.0", "2.8.4": "0.15.0", "2.8.5": "0.15.0", - "2.8.6": "0.15.0" + "2.8.6": "0.15.0", + "2.8.7": "0.15.0" }