dtrenz / LaunchGate

LaunchGate makes it easy to let users know when an update to your app is available.
http://dtrenz.github.io/LaunchGate
Other
60 stars 16 forks source link

Fix version comparison bug #50

Open nwest opened 3 years ago

nwest commented 3 years ago

This PR does two things: Updates Nimble and Quick (there was a bug in the previous version in Nimble that prevented it from running on Xcode 12.5)

Updates the version comparison logic to a more robust approach.

Here's the bug: when you use regular string comparison and have a larger minor version, > outputs true, when it should be false. image

Inspiration: https://useyourloaf.com/blog/comparing-version-strings/