Skip to content

Releases: ProxyScrape/proxyscrape-proxy-checker

v2.0.3

14 Apr 20:02

Choose a tag to compare

Fixed

  • Resolved an issue preventing the installer from being properly distributed with the release.

Note: New releases no longer hosted on Github

1.2.2

13 Apr 20:53

Choose a tag to compare

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

13 Apr 17:28

Choose a tag to compare

Improve updater

1.2.0

10 Jul 15:44
e94e876

Choose a tag to compare

What's Changed

  • Added progressbar to software updater by @sgmaxim in #27

1.1.0

01 Dec 20:45

Choose a tag to compare

  • Various small appearance changes
  • Increased app responsiveness
  • Fixed logos
  • Added application usage analytics

1.0.0

27 Nov 09:48

Choose a tag to compare

The initial release of the ProxyScrape proxy checker.
This proxy checker is based on the original Unfx proxy checker. License included in the software.