fix(settings): update version display and comment out incomplete dock settings

- Fix version display to use actual app version (3.1.1) from Tauri API
- Comment out dock display settings as feature is not yet implemented
- Update GitHub releases URL from yungookim to farion1231
This commit is contained in:
Jason
2025-09-07 22:14:17 +08:00
parent 02bfc97ee6
commit fa2b11fcc2
2 changed files with 17 additions and 8 deletions

View File

@@ -591,7 +591,7 @@ pub async fn check_for_updates(handle: tauri::AppHandle) -> Result<bool, String>
handle
.opener()
.open_url(
"https://github.com/yungookim/cc-switch/releases",
"https://github.com/farion1231/cc-switch/releases",
None::<String>,
)
.map_err(|e| format!("打开更新页面失败: {}", e))?;