GrainFull
9e5da1a851
feat(tray): 恢复并重构托盘显示速率功能 ( #6487 )
...
* feat(tray): 恢复并重构托盘显示速率功能
* docs(changelog): add tray speed feature entry for v2.4.7
* refactor(tray): 将托盘速率显示限制为仅 macOS
* chore(style): 统一托盘速率设置相关代码风格
* refactor(tray): 统一 speed 任务调度并移除循环内配置轮询
* chore(tauri): enable createUpdaterArtifacts for updater support
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* refactor(tray): refine macOS tray speed formatting and two-line alignment
* refactor(tray): move to utils
* refactor(tray): improve macOS speed display formatting, alignment, and structure
* chore: 降级 Node.js 版本至 21.7.1
* refactor(tray): 优化 macOS 托盘速率流与显示逻辑
* refactor(tray): 将速率任务重构为独立控制器并切换至 /traffic 流
* refactor(tray): 缩短速率宽度
* refactor(tray): 收敛测速流抽象并修正停止清理时序
* docs(changelog): 更新变更日志
* refactor(tray): simplify speed formatting logic and remove redundant functions
* refactor(tray): optimize speed display logic and reduce redundant attribute initialization
* refactor(tray): enhance traffic event parsing and improve stale event handling
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Tunglies <77394545+Tunglies@users.noreply.github.com>
2026-04-09 14:40:32 +00:00
Tunglies
e63e3aa63f
chore: update changelog for Mihomo(Meta) kernel upgrade to v1.19.23
2026-04-08 21:30:36 +08:00
wysha-object
b7230967b4
feat: show detailed results in hotkey notifications ( #6639 )
...
* feat: show detailed results in hotkey notifications
* fix: Japanese locale appears to have a truncated translation key label
* fix: variable naming
* Update documentation to English
* Remove unnecessary mut
* feat: enhance system proxy notifications with toggle state
* chore: update changelog to include new shortcut notification feature
* fix: remove unnecessary quotes from system proxy toggle messages in localization files
* fix: tun mode toggled hotkey notifications
* fix: correct toggle_tun_mode logic to handle current state and errors
---------
Co-authored-by: Tunglies <77394545+Tunglies@users.noreply.github.com>
2026-03-30 17:06:45 +00:00
Tunglies
c3aba3fc79
fix(profile): refresh profile data after timer auto-update completes
...
The profile-update-completed event handler was missing a mutate('getProfiles')
call, causing the "X time ago" display to show stale timestamps after
backend timer auto-updates.
2026-03-28 02:37:59 +08:00
Tunglies
c8f737d44e
chore!(deps): update sysproxy dependency to version 0.5.3
2026-03-28 01:03:56 +08:00
Tunglies
ca8e350694
fix(proxy): resolve system proxy toggle stuck and state desync ( #6614 ) ( #6657 )
...
* fix(proxy): resolve system proxy toggle stuck and state desync (#6614 )
Backend: replace hand-rolled AtomicBool lock in update_sysproxy() with
tokio::sync::Mutex so concurrent calls wait instead of being silently
dropped, ensuring the latest config is always applied.
Move blocking OS calls (networksetup on macOS) to spawn_blocking so
they no longer stall the tokio worker thread pool.
Frontend: release SwitchRow pendingRef in .finally() so the UI always
re-syncs with the actual OS proxy state, and rollback checked on error.
Closes #6614
* fix(changelog): add note for macOS proxy toggle freeze issue
2026-03-27 15:40:03 +00:00
Tunglies
77fa721119
fix(sysproxy): fully clear PAC when disabling system proxy ( #6591 )
2026-03-23 08:03:20 +00:00
wonfen
a2d66adceb
chore: update change log
2026-03-22 00:10:59 +08:00
wonfen
603671717a
Release 2.4.7
2026-03-22 00:10:59 +08:00
Tunglies
85eb3b48c2
chore: bump version to 2.4.8
2026-03-21 17:03:15 +08:00
wonfen
c6a7a2fb52
fix: correct inaccurate Gemini unlock test
2026-03-19 03:01:33 +08:00
wonfen
133a4e5b0b
chore: update changelog
2026-03-18 01:04:02 +08:00
wonfen
b69a97a7c1
chore: update changelog
2026-03-17 09:25:16 +08:00
Slinetrac
837508c02c
feat(monaco): reintroduce meta-json-schema ( #6509 )
...
* refactor(editor): make EditorViewer controlled and unify document state handling
* fix(monaco-yaml): add patchCreateWebWorker
* feat(monaco): reintroduce meta-json-schema
* fix(editor): reset document state on target change
2026-03-15 06:04:59 +00:00
Slinetrac
28959a0774
revert: mihomo ipc ( #6467 )
...
* revert: mihomo ipc
* docs: Changelog
* chore: bump frontend
2026-03-11 11:55:35 +00:00
Slinetrac
7ebf27ba52
refactor: do not trigger autobackup on profile change ( #6464 )
...
* refactor: do not trigger autobackup on profile change
* chore: i18n
2026-03-11 06:56:15 +00:00
Slinetrac
0bbf9407d8
feat(tun): validate route-exclude-address as CIDR ( #6440 )
...
* feat(tun): validate route-exclude-address as CIDR
* refactor(network): replace ipaddr.js helpers with cidr-block and validator
* docs: Changelog
2026-03-07 09:18:35 +00:00
Slinetrac
de2b09785d
fix: default on linux ( #6420 )
2026-03-04 11:53:25 +00:00
Slinetrac
05cdebd7ec
fix(window): default to custom titlebar on startup ( #6419 )
...
* fix(window): default to custom titlebar on startup
* docs: Changelog.md
2026-03-04 10:48:36 +00:00
Tunglies
39d8a0ee35
fix: optimize UI proxies refresh handling when first boot
2026-03-04 01:07:20 +08:00
AetherWing
09ea979cf7
chore: tray hotkey ( #6373 )
2026-03-01 09:13:42 +00:00
oomeow
25a83388bb
fix: apply config timeout ( #6384 )
...
* fix: apply config timeout
* docs: update Changelog.md
* Update src-tauri/src/core/manager/config.rs
---------
Co-authored-by: Tunglies <tunglies.dev@outlook.com>
2026-02-27 14:55:11 +00:00
Slinetrac
c8153c3f02
fix: avoid holding ws manager read lock across await ( #6379 )
...
* chore: bump tauri-plugin-mihomo to 0.1.7
* docs: Changelog.md
2026-02-26 11:17:48 +00:00
AetherWing
e1d914e61d
Chore(i18n): Improve Chinese–English typesetting ( #6351 )
...
* chore(i18n): add spacing after "TUN"
* docs: Changelog
* chore(i18n): Improve Chinese–English typesetting
* Apply suggestions from code review
* chore: i18n
---------
Co-authored-by: Slinetrac <realakayuki@gmail.com>
2026-02-23 05:17:23 +00:00
Slinetrac
1bf445ddcc
fix(tun): avoid service IPC startup race on Windows ( #6340 )
...
* fix(tun): avoid service IPC startup race on Windows
* docs: Changelog.md
* style: prettier
2026-02-22 13:09:47 +00:00
wonfen
7f045943e2
chore: update changelog
2026-02-21 04:23:03 +08:00
Tunglies
e5dd127bcc
feat: enhance profile update handling with manual trigger
2026-02-20 11:12:18 +08:00
Tunglies
7528c238c4
chore: bump version to 2.4.7
2026-02-20 10:58:32 +08:00
wonfen
d77d655897
Release 2.4.6
2026-02-20 02:58:23 +08:00
wonfen
ec6f259794
chore: replace node test with 1.0.0.1
2026-02-19 11:55:09 +08:00
Slinetrac
7a564b4ea9
fix(linux): handle empty KDE proxy schema without error ( #6316 )
...
* fix: kde sysproxy error
* docs: Changelog.md
2026-02-15 12:10:34 +00:00
wonfen
ddf455508f
chore: replace node test with 104.16.132.229
2026-02-14 04:41:14 +08:00
wonfen
9f6eb46e90
chore: update changelog
2026-02-12 14:55:39 +08:00
wonfen
cf9f235270
chore: replace node test with 8888
2026-02-12 14:52:36 +08:00
AetherWing
847a0a6afd
fix(tray): resolve tray open log failed ( #6301 )
...
* fix(tray): resolve tray open log failed
* fix(ci): allow missing_const_for_fn
* fix(windows): run snapshot log cleanup unconditionally and cover all temp dirs
* refactor: simplify snapshot_path
* fix: clippy
* refactor: delete_snapshot_logs
---------
Co-authored-by: Slinetrac <realakayuki@gmail.com>
2026-02-12 03:53:36 +00:00
wonfen
81c56d46c1
perf: optimize IP info card
2026-02-12 08:49:41 +08:00
Sline
31c0910919
feat: Masque ( #6303 )
2026-02-11 12:38:44 +00:00
JingxinXu
bba71aaa4c
feat: added clear btn in filter component ( #6229 ) ( #6295 )
...
Co-authored-by: Slinetrac <realakayuki@gmail.com>
2026-02-11 06:40:47 +00:00
wonfen
a4617d1fed
feat: add clear ingress/egress and data flow indicators for proxy chain
2026-02-11 04:41:46 +08:00
許景欣
277ded4c44
fix: displays rule lineNo instead of index in rule page ( #6230 ) ( #6286 )
...
* fix: displays rule lineNo instead of index in rule page (#6230 )
* fix(rules): derive line numbers in view model without mutating shared rules
* doc: update changelog
---------
Co-authored-by: Slinetrac <realakayuki@gmail.com>
2026-02-10 05:11:14 +00:00
Sline
8edfbbb1c6
fix(scheme): auto refresh core config on first URL scheme subscription ( #6277 )
...
* fix(scheme): auto refresh core config on first URL scheme subscription
* docs: Changelog.md
2026-02-08 06:34:20 +00:00
wonfen
afa591c279
chore: replace node test with 1.1.1.1
2026-02-07 04:21:01 +08:00
AetherWing
6f424ebd2b
fix(home-ui): align signal icon delay states with formatDelay ( #6249 )
...
* fix(ui): align signal icon delay states with formatDelay
* docs: changelog.md
2026-02-04 12:11:11 +00:00
Tunglies
b3a1fb8d23
fix(macos): update DNS to use 114.114.114.114 for TUN overwrite ( #6250 )
2026-02-04 01:27:33 +00:00
Tunglies
a8e51cc6bb
fix: improve subscription URL handling by fixing query parameter parsing
2026-02-03 10:26:50 +08:00
Tunglies
53867bc3a9
fix: enhance error reporting during service installation ( #6161 )
...
* fix: enhance error reporting during service installation
* fix: correct variable name in install_service function for clarity
* fix(windows): improve output handling in install_service function
2026-01-31 10:09:50 +00:00
Tunglies
ae5d3c478a
fix: resolve issue with tray operations after system resume ( #6216 )
...
* feat(limiter): add Limiter struct with clock interface and tests
* feat(limiter): integrate Limiter into tray and window management for rate limiting
* fix(tray, window_manager): update debounce timing for tray click and window operations
* refactor(limiter): change time representation from u64 to u128 for improved precision
* fix: resolve issue with tray operations after system resume
* Revert "refactor(limiter): change time representation from u64 to u128 for improved precision"
This reverts commit 2198f40f7fcecbb755deb38af005c28e993db970.
2026-01-31 09:23:20 +00:00
Tunglies
63a77b1c7d
fix(macos): prioritize network interfaces for reliable proxy setup
2026-01-30 08:53:42 +08:00
AetherWing
b17dd39f31
feat(tunnels): add tunnels viewer UI with add/delete support ( #6052 )
...
* feat(settings): add tunnels viewer UI and management logic
* docs: Changelog.md
* refactor(notice): remove redundant t() call
* refactor(tunnels): make proxy optional and follow current configuration by default
* refactor(tunnels): save after close dialog
* feat(tunnel): update check
* refactor(tunnels): merge import
* refactor(tunnels): use ipaddr.js
* docs: Changelog.md
* refactor(tunnels): enhance validation
* feat: add tunnels ti PATCH_CONFIG_INNER
* fix: sanitize invalid proxy references in tunnels
* refactor: use smartstring alias String
* docs: Changelog.md
* perf: optimize tunnels proxy validation and collection logic
---------
Co-authored-by: Slinetrac <realakayuki@gmail.com>
Co-authored-by: Tunglies <77394545+Tunglies@users.noreply.github.com>
2026-01-29 09:32:37 +00:00
Tunglies
88529af8c8
fix(Linux): use PKEXEC_UID #6159 ( #6160 )
...
* fix(Linux): add GID environment variable for Linux service installation #6159
* chore: bump clash_verge_service_ipc to 2.1.2
* chore: remove CLASH_VERGE_SERVICE_GID for linux
---------
Co-authored-by: Sline <realakayuki@gmail.com>
2026-01-26 12:41:45 +00:00