feat: show plugin version in settings tab

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
svemagie
2026-03-05 08:32:20 +01:00
parent 9e72dfd724
commit 223188d164
+6 -1
View File
@@ -70,7 +70,7 @@ Wenn du Fragen beantwortest:
}; };
export const MODELS = [ export const MODELS = [
{ id: "claude-opus-4-5-20251101", name: "Claude Opus 4.5 (Stärkst)" }, { id: "claude-opus-4-5-20251101", name: "Claude Opus 4.5 (Stärkste)" },
{ id: "claude-sonnet-4-5-20250929", name: "Claude Sonnet 4.5 (Empfohlen)" }, { id: "claude-sonnet-4-5-20250929", name: "Claude Sonnet 4.5 (Empfohlen)" },
{ id: "claude-haiku-4-5-20251001", name: "Claude Haiku 4.5 (Schnell)" }, { id: "claude-haiku-4-5-20251001", name: "Claude Haiku 4.5 (Schnell)" },
]; ];
@@ -127,6 +127,11 @@ export class MemexChatSettingsTab extends PluginSettingTab {
containerEl.createEl("h2", { text: "Memex Chat Einstellungen" }); containerEl.createEl("h2", { text: "Memex Chat Einstellungen" });
containerEl.createEl("p", {
text: `Memex Chat v${this.plugin.manifest.version}`,
cls: "setting-item-description",
});
// --- API --- // --- API ---
containerEl.createEl("h3", { text: "Claude API" }); containerEl.createEl("h3", { text: "Claude API" });