-
fix(auto-launch): use AutoLaunchBuilder for cross-platform compatibility
发布于
2025-11-28 14:59:09 +00:00 | 1631 次提交 在此版本后已推送到 mainThe auto-launch crate has different API signatures on each platform:
- Windows/Linux: AutoLaunch::new() takes 3 arguments
- macOS: AutoLaunch::new() takes 4 arguments (includes hidden param)
The previous code used #[cfg(not(target_os = "windows"))] which incorrectly
applied macOS's 4-argument signature to Linux, causing build failures.Switch to AutoLaunchBuilder which handles platform differences internally.
下载附件