Releases: ProxyScrape/proxyscrape-proxy-checker
Releases · ProxyScrape/proxyscrape-proxy-checker
v2.0.3
1.2.2
fix: filter pre-releases from custom update check (v1.2.2) The custom GitHub releases checker in src/core/updater.js was calling GET /repos/ProxyScrape/proxy-checker/releases and picking releases[0] (the newest entry, which includes pre-releases) without any filter. It also used plain string comparison (>) which treats "2.0.1-canary" as greater than "1.2.1" due to lexicographic ordering. When a v2.x canary pre-release was published to the same repo (which GitHub redirects proxy-checker → proxyscrape-proxy-checker), all v1.2.1 stable users saw a false "update available" overlay pointing at the canary. Fix: - Filter releases to stable-only (prerelease: false, draft: false) - Replace string > comparison with proper numeric semver segment comparison so "1.10.0 > 1.9.0" and similar edge cases are handled correctly Non-portable users self-heal: electron-updater (which already used /releases/latest correctly) downloads v1.2.2 transparently while the overlay is showing. v1.2.2 installs and the fixed updater runs. Made-with: Cursor
1.2.1
Improve updater
1.2.0
1.1.0
- Various small appearance changes
- Increased app responsiveness
- Fixed logos
- Added application usage analytics
1.0.0
The initial release of the ProxyScrape proxy checker.
This proxy checker is based on the original Unfx proxy checker. License included in the software.