Commit Graph

850 Commits

  • refactor(commands): improve terminal launch code structure and fix env vars
    重构 open_provider_terminal 相关代码,提升可维护性和可读性。
    
    主要改进:
    - 将 launch_terminal_with_env 拆分为多个职责单一的小函数
      * write_claude_config: 写入配置文件
      * escape_shell_path: 转义 shell 路径
      * generate_wrapper_script: 生成包装脚本
      * launch_macos_terminal / launch_linux_terminal / launch_windows_terminal: 平台特定启动逻辑
    - 使用 let Some else 提前返回模式,减少嵌套
    - 修复 Gemini 环境变量名为 GEMINI_API_KEY(而非 GOOGLE_API_KEY)
    - 完善临时文件清理逻辑:
      * macOS/Linux: 使用 trap EXIT 自动清理
      * Windows: 批处理文件自删除
    - 代码格式化和 import 排序优化
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
  • fix(ui): only show terminal button for Claude Code providers
    open_provider_terminal 功能仅支持 Claude Code,因此只在 Claude 应用中显示终端按钮。
    
    修改内容:
    - 在 ProviderList 组件调用时,根据 activeApp 条件传递 onOpenTerminal
    - 仅当 activeApp === "claude" 时传递 handleOpenTerminal 回调
    - Codex 和 Gemini 不会显示终端按钮(onOpenTerminal 为 undefined)
    
    影响范围:
    - src/App.tsx
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
  • fix(commands): add auto-cleanup for temp config files when terminal closes
    在 open_provider_terminal 功能中添加了临时配置文件的自动清理逻辑,
    确保在用户关闭终端窗口时自动删除创建的临时配置文件。
    
    修改内容:
    - Linux: 使用 bash -c 嵌套包装脚本,通过 trap EXIT 信号在 shell 退出时清理配置文件
    - macOS: 同样使用嵌套 bash + trap 机制来处理清理
    - Windows: 保持原有的批处理文件自删除逻辑(del 命令)
    
    技术细节:
    - 之前使用 sh -c "...; exec $SHELL" 会导致 trap 失效
    - 现在使用 bash -c 'trap ... EXIT; ...; exec bash --norc --noprofile'
    - exec 会替换进程但保留 trap 信号处理器
    - 当用户关闭终端时,EXIT 信号触发清理操作
    
    影响范围:
    - src-tauri/src/commands/misc.rs (launch_terminal_with_env 函数)
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
  • Merge upstream/main into main
    Resolved conflicts in src-tauri/src/lib.rs:
    - Kept both: open_provider_terminal (my feature) and universal provider commands (upstream)
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
  • chore: 更新 vite 版本 && 使用 code-inspector-plugin 方便从前端定位到代码位置 (#430)
    * chore: 更新 vite 版本 && 使用 code-inspector-plugin 方便从前端定位到代码位置
    
    * fix: update tailwind config path and conditionally load code-inspector-plugin
    
    - Update components.json to reference tailwind.config.cjs instead of deleted tailwind.config.js
    - Load codeInspectorPlugin only in dev mode to avoid unnecessary code in production builds
    
    ---------
    
    Co-authored-by: Jason <farion1231@gmail.com>
  • fix: 移除已废弃的 sync_enabled_to_codex 调用 (#460)
    * fix(mcp): 移除同步Codex Provider时的旧MCP同步调用
    
    sync_enabled_to_codex使用旧的config.mcp.codex结构,
    在v3.7.0统一结构中该字段为空,导致MCP配置被错误清除。
    MCP同步应通过McpService进行。
    
    Fixes #403
    
    * test(mcp): update test to reflect new MCP sync architecture
    
    Remove MCP-related assertions from sync_codex_provider_writes_auth_and_config
    test since provider switching no longer triggers MCP sync in v3.7.0+.
    
    MCP synchronization is now handled independently by McpService,
    not as part of the provider switch flow.
    
    ---------
    
    Co-authored-by: Jason <farion1231@gmail.com>
  • fix: MCP同步时优雅处理无效的Codex config.toml (#461)
    * fix(mcp): 移除同步Codex Provider时的旧MCP同步调用
    
    sync_enabled_to_codex使用旧的config.mcp.codex结构,
    在v3.7.0统一结构中该字段为空,导致MCP配置被错误清除。
    MCP同步应通过McpService进行。
    
    Fixes #403
    
    * fix(mcp): 优雅处理Codex配置文件解析失败的情况
    
    当~/.codex/config.toml存在但内容无效时,MCP同步操作会失败,
    导致后续provider切换等操作也失败。
    
    修改sync_single_server_to_codex和remove_server_from_codex函数,
    在配置文件解析失败时进行容错处理而不是返回错误。
    
    Fixes #393
  • fix(macos): use .app bundle path for autostart to prevent terminal window (#462)
    On macOS, the auto-launch library requires the .app bundle path (e.g.,
    /Applications/CC Switch.app) rather than the binary path inside the bundle
    (e.g., .app/Contents/MacOS/CC Switch). Using the binary path directly
    causes AppleScript login items to open a terminal window.
    
    This fix extracts the .app bundle path from current_exe() on macOS,
    ensuring proper integration with macOS login items.
    
    Closes #375
  • feat: add Universal Provider feature (#348)
    * feat: add Universal Provider feature
    
    - Add Universal Provider data structures and type definitions
    - Implement backend CRUD operations and sync functionality
    - Add frontend UI components (UniversalProviderPanel, Card, FormModal)
    - Add NewAPI icon and preset configuration
    - Support cross-app (Claude/Codex/Gemini) configuration sync
    - Add website URL field for providers
    - Implement real-time refresh via event notifications
    - Add i18n support (Chinese/English/Japanese)
    
    * feat: integrate universal provider presets into add provider dialog
    
    - Add universal provider presets (NewAPI, Custom Gateway) to preset selector
    - Show universal presets with Layers icon badge in preset selector
    - Open UniversalProviderFormModal when universal preset is clicked
    - Pass initialPreset to auto-fill form when opened from add dialog
    - Add i18n keys for addSuccess/addFailed messages
    - Keep separate universal provider panel for management
    
    * refactor: move universal provider management to add dialog
    
    - Remove Layers button from main navigation header
    - Add 'Manage' button next to universal provider presets
    - Open UniversalProviderPanel from within add provider dialog
    - Add i18n keys for 'manage' in all locales
    
    * style: display universal provider presets on separate line
    
    - Move universal provider section to a new row with border separator
    - Add label '统一供应商:' to clarify the section
    
    * style: unify universal provider label style with preset label
    
    - Use FormLabel component for consistent styling
    - Add background to 'Manage' button matching preset buttons
    - Update icon size and button padding for consistency
    
    * feat: add sync functionality and JSON preview for Universal Provider
    
    * fix: add missing in_failover_queue field to Provider structs
    
    After rebasing to main, the Provider struct gained a new
    `in_failover_queue` field. This fix adds the missing field
    to the three to_*_provider() methods in UniversalProvider.
    
    * refactor: redesign AddProviderDialog with tab-based layout
    
    - Add tabs to separate app-specific providers and universal providers
    - Move "Add Universal Provider" button from panel header to footer
    - Remove unused handleAdd callback and clean up imports
    - Update emptyHint i18n text to reference the footer button
    
    * fix: append /v1 suffix to Codex base_url in Universal Provider
    
    Codex uses OpenAI-compatible API which requires the /v1 endpoint suffix.
    The Universal Provider now automatically appends /v1 to base_url when
    generating Codex provider config if not already present.
    
    - Handle trailing slashes to avoid double slashes
    - Apply fix to both backend (to_codex_provider) and frontend preview
    
    * feat: auto-sync universal provider to apps on creation
    
    Previously, users had to manually click sync after adding a universal
    provider. Now it automatically syncs to Claude/Codex/Gemini on creation,
    providing a smoother user experience.
    
    ---------
    
    Co-authored-by: Jason <farion1231@gmail.com>
  • fix(i18n): add missing translations for reasoning model and OpenRouter compat mode
    Add missing i18n keys introduced in commit e6f18ba:
    - providerForm.anthropicReasoningModel
    - providerForm.reasoningModelPlaceholder
    - providerForm.openrouterCompatMode
    - providerForm.openrouterCompatModeHint
    - proxy.failover.proxyRequired
  • docs: make sponsor logos clickable and update sponsor list
    - Make all sponsor logos clickable links in README files (EN/ZH/JA)
    - Replace ShanDianShuo with DMXAPI sponsor
    - Add DMXAPI logo images (dmx-en.jpg, dmx-zh.jpeg)
    - Unify sponsor list across all language versions
  • fix(ui): improve dark mode text contrast for form labels
    Replace hardcoded Tailwind color classes with design system CSS variables
    to improve text visibility in dark mode:
    
    - text-gray-900 dark:text-gray-100 → text-foreground
    - text-gray-500/600 dark:text-gray-400 → text-muted-foreground
    - bg-white dark:bg-gray-800 → bg-background
  • fix(database): add backward compatibility check for proxy_config seed insert
    Add has_column check before inserting seed data into proxy_config table.
    This prevents SQL errors when upgrading from older databases where
    proxy_config was a singleton table without the app_type column.
    
    The migration function will handle the table structure upgrade and
    insert the three rows after converting to the new schema.
  • Feat/usage model extraction (#455)
    * feat(proxy): extract model name from API response for accurate usage tracking
    
    - Add model field extraction in TokenUsage parsing for Claude, OpenAI, and Codex
    - Prioritize response model over request model in usage logging
    - Update model extractors to use parsed usage.model first
    - Add tests for model extraction in stream and non-stream responses
    
    * feat(proxy): implement streaming timeout control with validation
    
    - Add first byte timeout (0 or 1-180s) for streaming requests
    - Add idle timeout (0 or 60-600s) for streaming data gaps
    - Add non-streaming timeout (0 or 60-1800s) for total request
    - Implement timeout logic in response processor
    - Add 1800s global timeout fallback when disabled
    - Add database schema migration for timeout fields
    - Add i18n translations for timeout settings
    
    * feat(proxy): add model mapping module for provider-based model substitution
    
    - Add model_mapper.rs with ModelMapping struct to extract model configs from Provider
    - Support ANTHROPIC_MODEL, ANTHROPIC_REASONING_MODEL, and default models for haiku/sonnet/opus
    - Implement thinking mode detection for reasoning model priority
    - Include comprehensive unit tests for all mapping scenarios
    
    * fix(proxy): bypass circuit breaker for single provider scenario
    
    When failover is disabled (single provider), circuit breaker open state
    would block all requests causing poor UX. Now bypasses circuit breaker
    check in this scenario. Also integrates model mapping into request flow.
    
    * feat(ui): add reasoning model field to Claude provider form
    
    Add ANTHROPIC_REASONING_MODEL configuration field for Claude providers,
    allowing users to specify a dedicated model for thinking/reasoning tasks.
    
    * feat(proxy): add openrouter_compat_mode for optional format conversion
    
    Add configurable OpenRouter compatibility mode that enables Anthropic to
    OpenAI format conversion. When enabled, rewrites endpoint to /v1/chat/completions
    and transforms request/response formats. Defaults to enabled for OpenRouter.
    
    * feat(ui): add OpenRouter compatibility mode toggle
    
    Add UI toggle for OpenRouter providers to enable/disable compatibility
    mode which uses OpenAI Chat Completions format with SSE conversion.
    
    * feat(stream-check): use provider-configured model for health checks
    
    Extract model from provider's settings_config (ANTHROPIC_MODEL, GEMINI_MODEL,
    or Codex config.toml) instead of always using default test models.
    
    * refactor(ui): remove timeout settings from AutoFailoverConfigPanel
    
    Remove streaming/non-streaming timeout configuration from failover panel
    as these settings have been moved to a dedicated location.
    
    * refactor(database): migrate proxy_config to per-app three-row structure
    
    Replace singleton proxy_config table with app_type primary key structure,
    allowing independent proxy settings for Claude, Codex, and Gemini.
    Add GlobalProxyConfig queries and per-app config management in DAO layer.
    
    * feat(proxy): add GlobalProxyConfig and AppProxyConfig types
    
    Add new type definitions for the refactored proxy configuration:
    - GlobalProxyConfig: shared settings (enabled, address, port, logging)
    - AppProxyConfig: per-app settings (failover, timeouts, circuit breaker)
    
    * refactor(proxy): update service layer for per-app config structure
    
    Adapt proxy service, handler context, and provider router to use
    the new per-app configuration model. Read enabled/timeout settings
    from proxy_config table instead of settings table.
    
    * feat(commands): add global and per-app proxy config commands
    
    Add new Tauri commands for the refactored proxy configuration:
    - get_global_proxy_config / update_global_proxy_config
    - get_proxy_config_for_app / update_proxy_config_for_app
    Update startup restore logic to read from proxy_config table.
    
    * feat(api): add frontend API and Query hooks for proxy config
    
    Add TypeScript wrappers and TanStack Query hooks for:
    - Global proxy config (address, port, logging)
    - Per-app proxy config (failover, timeouts, circuit breaker)
    - Proxy takeover status management
    
    * refactor(ui): redesign proxy panel with inline config controls
    
    Replace ProxySettingsDialog with inline controls in ProxyPanel.
    Add per-app takeover switches and global address/port settings.
    Simplify AutoFailoverConfigPanel by removing timeout settings.
    
    * feat(i18n): add proxy takeover translations and update types
    
    Add i18n strings for proxy takeover status in zh/en/ja.
    Update TypeScript types for GlobalProxyConfig and AppProxyConfig.
    
    * refactor(proxy): load circuit breaker config per-app instead of globally
    
    Extract app_type from router key and read circuit breaker settings
    from the corresponding proxy_config row for each application.
  • feat: add provider-specific terminal button
    Add a terminal button next to each provider card that opens a new terminal
    window with that provider's specific API configuration. This allows using
    different providers independently without changing the global setting.
    
    Changes:
    - Backend: Add `open_provider_terminal` command that extracts provider
      config and creates a temporary claude settings file
    - Frontend: Add terminal button to provider cards with proper callback
      propagation through component hierarchy
    - Support macOS (Terminal.app), Linux (gnome-terminal, konsole, etc.),
      and Windows (cmd)
    
    Each provider gets a unique config file named `claude_<providerId>_<pid>.json`
    in the temp directory, containing the provider's API configuration.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
  • feat(ui): add exit animation to FullScreenPanel dialogs
    - Wrap FullScreenPanel content with AnimatePresence for exit animation
    - Add exit={{ opacity: 0 }} to enable fade-out on close
    - Use useRef + useEffect to preserve provider data during exit animation
    - Follow React best practices by updating refs in useEffect instead of render
    
    Affected components:
    - EditProviderDialog
    - UsageScriptModal
    - AddProviderDialog
    - McpFormModal
    - ProxySettingsDialog
  • fix(ui): reduce header spacing and fix layout shift on view switch
    - Change right-side button container from min-h-[40px] to h-[32px]
      for more compact header layout
    - Remove conditional padding (pt-6/pt-4) from main content area
      to eliminate layout jump during view transitions
  • Feat/auto failover switch (#440)
    * feat(failover): add auto-failover master switch with proxy integration
    
    - Add persistent auto_failover_enabled setting in database
    - Add get/set_auto_failover_enabled commands
    - Provider router respects master switch state
    - Proxy shutdown automatically disables failover
    - Enabling failover auto-starts proxy server
    - Optimistic updates for failover queue toggle
    
    * feat(proxy): persist proxy takeover state across app restarts
    
    - Add proxy_takeover_{app_type} settings for per-app state tracking
    - Restore proxy takeover state automatically on app startup
    - Preserve state on normal exit, clear on manual stop
    - Add stop_with_restore_keep_state method for graceful shutdown
    
    * fix(proxy): set takeover state for all apps in start_with_takeover
    
    * fix(windows): hide console window when checking CLI versions
    
    Add CREATE_NO_WINDOW flag to prevent command prompt from flashing
    when detecting claude/codex/gemini CLI versions on Windows.
    
    * refactor(failover): make auto-failover toggle per-app independent
    
    - Change setting key from 'auto_failover_enabled' to 'auto_failover_enabled_{app_type}'
    - Update provider_router to check per-app failover setting
    - When failover disabled, use current provider only; when enabled, use queue order
    - Add unit tests for failover enabled/disabled behavior
    
    * feat(failover): auto-switch to higher priority provider on recovery
    
    - After circuit breaker reset, check if recovered provider has higher priority
    - Automatically switch back if queue_order is lower (higher priority)
    - Stream health check now resets circuit breaker on success/degraded
    
    * chore: remove unused start_proxy_with_takeover command
    
    - Remove command registration from lib.rs
    - Add comment clarifying failover queue is preserved on proxy stop
    
    * feat(ui): integrate failover controls into provider cards
    
    - Add failover toggle button to provider card actions
    - Show priority badge (P1, P2, ...) for queued providers
    - Highlight active provider with green border in failover mode
    - Sync drag-drop order with failover queue
    - Move per-app failover toggle to FailoverQueueManager
    - Simplify SettingsPage failover section
    
    * test(providers): add mocks for failover hooks in ProviderList tests
    
    * refactor(failover): merge failover_queue table into providers
    
    - Add in_failover_queue field to providers table
    - Remove standalone failover_queue table and related indexes
    - Simplify queue ordering by reusing sort_index field
    - Remove reorder_failover_queue and set_failover_item_enabled commands
    - Update frontend to use simplified FailoverQueueItem type
    
    * fix(database): ensure in_failover_queue column exists for v2 databases
    
    Add column check in create_tables to handle existing v2 databases
    that were created before the failover queue refactor.
    
    * fix(ui): differentiate active provider border color by proxy mode
    
    - Use green border/gradient when proxy takeover is active
    - Use blue border/gradient in normal mode (no proxy)
    - Improves visual distinction between proxy and non-proxy states
    
    * fix(database): clear provider health record when removing from failover queue
    
    When a provider is removed from the failover queue, its health monitoring
    is no longer needed. This change ensures the health record is also deleted
    from the database to prevent stale data.
    
    * fix(failover): improve cache cleanup for provider health and circuit breaker
    
    - Use removeQueries instead of invalidateQueries when stopping proxy to
      completely clear health and circuit breaker caches
    - Clear provider health and circuit breaker caches when removing from
      failover queue
    - Refresh failover queue after drag-sort since queue order depends on
      sort_index
    - Only show health badge when provider is in failover queue
    
    * style: apply prettier formatting to App.tsx and ProviderList.tsx
    
    * fix(proxy): handle missing health records and clear health on proxy stop
    
    - Return default healthy state when provider health record not found
    - Add clear_provider_health_for_app to clear health for specific app
    - Clear app health records when stopping proxy takeover
    
    * fix(proxy): track actual provider used in forwarding for accurate logging
    
    Introduce ForwardResult and ForwardError structs to return the actual
    provider that handled the request. This ensures usage statistics and
    error logs reflect the correct provider after failover.
  • fix(ui): prevent header layout shift when switching views
    Add min-height to right-side button container and ml-auto to add buttons
    in MCP/Prompts views to maintain consistent header height and button
    position across all views.
  • feat(ui): add fade transition for view and panel switching
    Add smooth fade animations when navigating between views (Settings,
    MCP, Skills, Prompts) and opening full-screen panels (Add/Edit Provider).
  • feat: add provider search filter (#435)
    * feat: add provider search filter
    
    * feat: add provider search overlay
  • feat(failover): add auto-failover master switch with proxy integration (#427)
    * feat(failover): add auto-failover master switch with proxy integration
    
    - Add persistent auto_failover_enabled setting in database
    - Add get/set_auto_failover_enabled commands
    - Provider router respects master switch state
    - Proxy shutdown automatically disables failover
    - Enabling failover auto-starts proxy server
    - Optimistic updates for failover queue toggle
    
    * feat(proxy): persist proxy takeover state across app restarts
    
    - Add proxy_takeover_{app_type} settings for per-app state tracking
    - Restore proxy takeover state automatically on app startup
    - Preserve state on normal exit, clear on manual stop
    - Add stop_with_restore_keep_state method for graceful shutdown
    
    * fix(proxy): set takeover state for all apps in start_with_takeover
  • feat(ui): add fade transition for app switching
    - Add AnimatePresence + motion.div wrapper for provider list
    - Use key={activeApp} to trigger enter/exit animations on app switch
    - Remove redundant animate-slide-up from ProviderList to prevent
      animation conflicts and visual jitter
  • style(settings): unify tab transition animations
    Add framer-motion fade-in and slide-up animations to General and
    Advanced tabs, matching the existing Usage and About tab animations.
  • feat(settings): add option to skip Claude Code first-run confirmation
    Add a new setting to automatically skip Claude Code's onboarding screen
    by writing hasCompletedOnboarding=true to ~/.claude.json. The setting
    defaults to enabled for better user experience.
    
    - Add set/clear_has_completed_onboarding functions in claude_mcp.rs
    - Add Tauri commands and frontend API integration
    - Add toggle in WindowSettings with i18n support (en/zh/ja)
    - Fix hardcoded Chinese text in tests to use i18n keys
  • i18n: complete usage panel and settings internationalization
    - Add missing i18n keys for usage statistics panel (trends, cost, perMillion, etc.)
    - Add i18n keys for settings advanced section (configDir, proxy, modelTest, etc.)
    - Add streamCheck i18n keys for health check configuration
    - Remove hardcoded Chinese fallback values from t() calls
    - Add common keys (all, search, reset, actions, deleting)
  • i18n: complete internationalization for v3.8+ features
    - Add health status translations (operational, degraded, failed, circuitOpen)
    - Add proxy panel translations (serviceAddress, stats, stopped state)
    - Add usage filter translations (appType, statusCode, searchPlaceholder)
    - Add providerIcon click hints (clickToChange, clickToSelect)
    - Add config load error translations for main.tsx
    - Complete Japanese proxy section (failoverQueue, autoFailover)
    - Fix date/time locale in usage charts and tables
    - Use t() function in all hardcoded UI strings
  • style(switch): improve dark mode appearance
    - Track (unchecked): lighten in light mode (gray-300 → gray-200),
      darken in dark mode (gray-700 → gray-900) to blend with background
    - Thumb: soften in dark mode (white → gray-400) to reduce glare
  • fix(ui): improve text visibility in dark mode
    Replace hardcoded gray color classes with semantic color classes
    to fix poor text contrast in dark mode:
    
    - MCP panel: server names, descriptions, tags, app labels
    - Prompt panel: prompt names, descriptions, empty states
    - Usage footer: timestamps, refresh buttons
    - Update badge: close button icon
    - API key input: disabled state text
    - Env warning banner: source info text
    
    Changes:
    - `text-gray-400 dark:text-gray-500` → `text-muted-foreground`
      (fixes reversed dark mode logic)
    - `text-gray-500 dark:text-gray-400` → `text-muted-foreground`
    - `bg-gray-100 dark:bg-gray-800` → `bg-muted`
  • chore: bump version to 3.9.0-2 for second test release
    - Update version in package.json, Cargo.toml, tauri.conf.json
    - Fix clippy too_many_arguments warning in forwarder.rs
  • style(header): unify height and styling of header toolbar sections
    - Use consistent h-8 fixed height for all inner elements
    - Standardize border-radius to rounded-xl across all sections
    - Remove background from ProxyToggle for cleaner appearance
    - Simplify ProxyToggle structure with nested container
  • feat(providers): add DMXAPI as official partner
    Mark DMXAPI as partner in both Claude and Codex presets with promotion
    message for their Claude Code exclusive model 66% OFF offer.
  • feat(icons): add provider icons for OpenRouter, LongCat, ModelScope, AiHubMix
    - Add SVG icons for OpenRouter, LongCat, ModelScope, and AiHubMix
    - Register icons in index.ts and metadata.ts with search keywords
    - Link icons to corresponding provider presets in claudeProviderPresets.ts
  • refactor(proxy): switch OpenRouter to passthrough mode for native Claude API
    OpenRouter now supports Claude Code compatible endpoint (/v1/messages),
    eliminating the need for Anthropic ↔ OpenAI format conversion.
    
    - Disable format transformation for OpenRouter (keep old logic as fallback)
    - Pass through original endpoint instead of redirecting to /v1/chat/completions
    - Add anthropic-version header for ClaudeAuth and Bearer strategies
    - Update tests to reflect new passthrough behavior
  • fix(window): add minWidth/minHeight to Windows platform config
    Tauri 2.0 platform config merging is shallow, not deep. The Windows
    config only specified titleBarStyle, causing minWidth/minHeight to
    be missing on Windows. This allowed users to resize the window below
    900px, causing header elements to misalign.
  • fix(proxy): respect existing token field when syncing Claude config
    - Add support for ANTHROPIC_API_KEY in Claude auth extraction
    - Only update existing token fields during sync, avoid adding fields
      that weren't originally configured by the user
    - Add tests for both scenarios
  • fix(proxy): add fallback recovery for orphaned takeover state
    - Detect takeover residue in Live configs even when proxy is not running
    - Implement 3-tier fallback: backup → SSOT → cleanup placeholders
    - Only delete backup after successful restore to prevent data loss
    - Fix EditProviderDialog to check current app's takeover status only
  • refactor(proxy): remove global auto-start flag
    - Remove global proxy auto-start flag from config and UI.
    - Simplify per-app takeover start/stop and stop server when the last takeover is disabled.
    - Restore live takeover detection used for crash recovery.
    - Keep proxy_config.enabled column but always write 0 for compatibility.
    - Tests: not run (not requested).
  • fix(import): refresh all providers immediately after SQL import
    - Remove setTimeout delay that could be cancelled on component unmount
    - Invalidate all providers cache (not just current app) since import affects all apps
    - Call onImportSuccess before sync to ensure UI refresh even if sync fails
    - Update i18n: "Data refreshed" (past tense, reflecting immediate action)
  • fix(backup): restrict SQL import to CC Switch exported backups only
    - Add validation to reject SQL files without CC Switch export header
    - Remove redundant sanitize_import_sql (sqlite_* objects already excluded at export time)
    - Fix backup filename collision by appending counter suffix
    - Update i18n hints to clarify import restriction
  • Fix/about section UI (#419)
    * fix(ui): improve AboutSection styling and version detection
    
    - Add framer-motion animations for smooth page transitions
    - Unify button sizes and add icons for consistency
    - Add gradient backgrounds and hover effects to cards
    - Add notInstalled i18n translations (zh/en/ja)
    - Fix version detection when stdout/stderr is empty
    
    * fix(proxy): persist per-app takeover state across app restarts
    
    - Fix proxy toggle color to reflect current app's takeover state only
    - Restore proxy service on startup if Live config is still in takeover state
    - Preserve per-app backup records instead of clearing all on restart
    - Only recover Live config when proxy service fails to start
  • chore: rename version to 3.9.0-1 for MSI compatibility
    MSI installer requires numeric-only pre-release identifiers.
    Changed from 3.9.0-beta.1 to 3.9.0-1.