mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 08:45:41 +08:00
* Refactor proxy management: Remove EventDrivenProxyManager and async_proxy_query - Removed the EventDrivenProxyManager and its related event-driven proxy management logic. - Replaced usages of AsyncProxyQuery with direct calls to sysproxy for fetching system and auto proxy configurations. - Cleaned up constants by removing unused default proxy host. - Updated sysopt to eliminate calls to the removed EventDrivenProxyManager. - Adjusted logging and proxy state management to reflect the removal of event-driven architecture. - Simplified the core module structure by removing unnecessary module imports. * refactor: remove bypass module for cleaner network configuration * feat: update sysproxy to version 0.4.0 and add guard feature; refactor sysopt for improved proxy management * feat(windows/sysproxy): unify guard-type handling and auto-restore drift * refactor(config): remove commented-out code for SysProxy update flag --------- Co-authored-by: Slinetrac <realakayuki@gmail.com>
15 lines
249 B
Rust
15 lines
249 B
Rust
pub mod backup;
|
|
pub mod handle;
|
|
pub mod hotkey;
|
|
pub mod logger;
|
|
pub mod manager;
|
|
mod notification;
|
|
pub mod service;
|
|
pub mod sysopt;
|
|
pub mod timer;
|
|
pub mod tray;
|
|
pub mod validate;
|
|
pub mod win_uwp;
|
|
|
|
pub use self::{manager::CoreManager, timer::Timer};
|