diff --git a/CHANGELOG.md b/CHANGELOG.md index f5a820909..75660d599 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ All notable changes to CC Switch will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.8.3] - 2025-12-24 + +### Added + +- **AiGoCode partner** - Added AiGoCode icon and partner promotion +- **Skip first-run confirmation** - New setting to skip Claude Code first-run confirmation dialog +- **DMXAPI partner** - Added DMXAPI as official partner +- **Provider icons** - Added icons for OpenRouter, LongCat, ModelScope, AiHubMix + +### Fixed + +- **UI header layout** - Fixed content being covered by fixed header (added padding-top) +- **Dark mode visibility** - Improved text visibility in dark mode +- **Azure link** - Corrected Azure website link (#407) +- **Skill installation** - Use directory basename for skill installation path (#358) +- **SQL import refresh** - Refresh all providers immediately after SQL import +- **MCP sync safety** - Skip sync when target CLI app is not installed + +### Changed + +- **Model versions** - Updated model versions for provider presets +- **Provider switch notification** - Removed restart prompt from notification +- **SQL import restriction** - Restrict SQL import to CC Switch exported backups only +- **GLM partner images** - Updated partner banner images + +--- + ## [3.8.0] - 2025-11-28 ### Major Updates diff --git a/package.json b/package.json index c81068792..c04b9e7cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cc-switch", - "version": "3.8.2", + "version": "3.8.3", "description": "All-in-One Assistant for Claude Code, Codex & Gemini CLI", "scripts": { "dev": "pnpm tauri dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 13fc4b2f0..9bf530389 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -618,7 +618,7 @@ dependencies = [ [[package]] name = "cc-switch" -version = "3.8.2" +version = "3.8.3" dependencies = [ "anyhow", "auto-launch", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 832f51a9d..1f928da9d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc-switch" -version = "3.8.2" +version = "3.8.3" description = "All-in-One Assistant for Claude Code, Codex & Gemini CLI" authors = ["Jason Young"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b700b05a3..2090dbd24 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "CC Switch", - "version": "3.8.2", + "version": "3.8.3", "identifier": "com.ccswitch.desktop", "build": { "frontendDist": "../dist",