chore: bump version to 3.9.0-beta.1

- Update version in package.json, Cargo.toml, tauri.conf.json
- Add CHANGELOG entry for v3.9.0-beta.1 with:
  - Local Proxy Server feature
  - Auto Failover with circuit breaker
  - Skills multi-app support
  - Provider icon colors
  - 25+ bug fixes
- Add proxy feature guide documentation (Chinese)
This commit is contained in:
Jason
2025-12-18 20:53:02 +08:00
parent ae837ade02
commit ec6e113cf2
9 changed files with 276 additions and 23 deletions
+2 -7
View File
@@ -19,13 +19,8 @@ interface ProxyToggleProps {
export function ProxyToggle({ className, activeApp }: ProxyToggleProps) {
const { t } = useTranslation();
const {
isRunning,
takeoverStatus,
setTakeoverForApp,
isPending,
status,
} = useProxyStatus();
const { isRunning, takeoverStatus, setTakeoverForApp, isPending, status } =
useProxyStatus();
const handleToggle = async (checked: boolean) => {
await setTakeoverForApp({ appType: activeApp, enabled: checked });