You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#57 Startup restore regression: After v0.5.4, the dedup check caused the startup-restored tab (empty content, correct filePath) to be reused when opening the same file from Collections, discarding the real pipeline data. Fixed: `AppState::new()` now loads the last-opened pipeline from disk at startup.
#58 SOCKS5 proxies ignored in Saved Config jobs: `create_job` inherited `proxy_groups` from GuiConfig but not `proxy_mode` or `proxy_sources`, so in-session SOCKS5 config was not applied to Saved Config jobs. Fixed: proxy_mode and proxy_sources are now inherited from the active in-memory pipeline.
#59 Sticky mode group override ignored: Auto-elevating `proxy_mode` from None hardcoded `ProxyMode::Rotate` instead of reading `ProxyGroup.mode`, so Sticky groups always ran in Rotate mode. Fixed: uses the selected group's own mode when elevating.