diff --git a/package.json b/package.json index ad4e3b9..8caa388 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antigravity-claude-proxy", - "version": "1.2.6", + "version": "2.4.2", "description": "Proxy server to use Antigravity's Claude models with Claude Code CLI", "main": "src/index.js", "type": "module", diff --git a/public/index.html b/public/index.html index ea8cf41..6cfa50a 100644 --- a/public/index.html +++ b/public/index.html @@ -77,8 +77,12 @@
ANTIGRAVITY - CLAUDE PROXY SYSTEM +
+ CLAUDE PROXY SYSTEM + v1.0.0 +
@@ -211,11 +215,15 @@ -
-
- V 1.0.0 +
+
GitHub + class="flex items-center gap-1.5 hover:text-neon-purple transition-colors"> + + + + GitHub +
diff --git a/public/js/components/models.js b/public/js/components/models.js index 68f6b40..8a8fe27 100644 --- a/public/js/components/models.js +++ b/public/js/components/models.js @@ -6,6 +6,21 @@ window.Components = window.Components || {}; window.Components.models = () => ({ + editingModelId: null, + newMapping: '', + + isEditing(modelId) { + return this.editingModelId === modelId; + }, + + startEditing(modelId) { + this.editingModelId = modelId; + }, + + stopEditing() { + this.editingModelId = null; + }, + init() { // Ensure data is fetched when this tab becomes active (skip initial trigger) this.$watch('$store.global.activeTab', (val, oldVal) => { diff --git a/public/views/settings.html b/public/views/settings.html index f218f82..47e8a9f 100644 --- a/public/views/settings.html +++ b/public/views/settings.html @@ -301,10 +301,7 @@
-

Select a preset to load it. Click "Apply to Claude CLI" to save - changes.

+

Select a preset to load it. Click "Apply to Claude CLI" to save changes.

@@ -700,8 +697,7 @@ x-text="$store.global.t('unsavedChangesMessage') || 'Your current configuration doesn\'t match any saved preset.'">Your current configuration doesn't match any saved preset.

- +