Skip to content

Commit eaddcbe

Browse files
committed
chore: bump version to 3.9.0-3
1 parent 83a5597 commit eaddcbe

File tree

5 files changed

+62
-4
lines changed

5 files changed

+62
-4
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,64 @@ All notable changes to CC Switch will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.9.0-3] - 2025-12-29
9+
10+
### Beta Release
11+
12+
Third beta release with important bug fixes for Windows compatibility, UI improvements, and new features.
13+
14+
### Added
15+
16+
- **Universal Provider** - Support for universal provider configurations (#348)
17+
- **Provider Search Filter** - Quick filter to find providers by name (#435)
18+
- **Keyboard Shortcut** - Open settings with Command+comma / Ctrl+comma (#436)
19+
- **Xiaomi MiMo Icon** - Added MiMo icon and Claude provider configuration (#470)
20+
- **Usage Model Extraction** - Extract model info from usage statistics (#455)
21+
- **Skip First-Run Confirmation** - Option to skip Claude Code first-run confirmation dialog
22+
- **Exit Animations** - Added exit animation to FullScreenPanel dialogs
23+
- **Fade Transitions** - Smooth fade transitions for app/view/panel switching
24+
25+
### Fixed
26+
27+
#### Windows
28+
- Wrap npx/npm commands with `cmd /c` for MCP export
29+
- Prevent terminal windows from appearing during version check
30+
31+
#### macOS
32+
- Use .app bundle path for autostart to prevent terminal window popup
33+
34+
#### UI
35+
- Resolve Dialog/Modal not opening on first click (#492)
36+
- Improve dark mode text contrast for form labels
37+
- Reduce header spacing and fix layout shift on view switch
38+
- Prevent header layout shift when switching views
39+
40+
#### Database & Schema
41+
- Add missing base columns migration for proxy_config
42+
- Add backward compatibility check for proxy_config seed insert
43+
44+
#### Other
45+
- Use local timezone and robust DST handling in usage stats (#500)
46+
- Remove deprecated `sync_enabled_to_codex` call
47+
- Gracefully handle invalid Codex config.toml during MCP sync
48+
- Add missing translations for reasoning model and OpenRouter compat mode
49+
50+
### Improved
51+
52+
- **macOS Tray** - Use macOS tray template icon
53+
- **Header Alignment** - Remove macOS titlebar tint, align custom header
54+
- **Shadow Removal** - Cleaner UI by removing shadow styles
55+
- **Code Inspector** - Added code-inspector-plugin for development
56+
- **i18n** - Complete internationalization for usage panel and settings
57+
- **Sponsor Logos** - Made sponsor logos clickable
58+
59+
### Stats
60+
61+
- 35 commits since v3.9.0-2
62+
- 5 files changed in test/lint fixes
63+
64+
---
65+
866
## [3.9.0-1] - 2025-12-18
967

1068
### Beta Release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cc-switch",
3-
"version": "3.9.0-2",
3+
"version": "3.9.0-3",
44
"description": "All-in-One Assistant for Claude Code, Codex & Gemini CLI",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cc-switch"
3-
version = "3.9.0-2"
3+
version = "3.9.0-3"
44
description = "All-in-One Assistant for Claude Code, Codex & Gemini CLI"
55
authors = ["Jason Young"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "CC Switch",
4-
"version": "3.9.0-2",
4+
"version": "3.9.0-3",
55
"identifier": "com.ccswitch.desktop",
66
"build": {
77
"frontendDist": "../dist",

0 commit comments

Comments
 (0)