Currently, we use int versions to detect whether an update is available for the current version of Storage Explorer. Because int versions always increment, this becomes problematic when patch updates are released after minor updates.
For example, say the following versions are released in sequence:
- 1.9.0 (20)
- 1.10.0 (21)
- 1.9.1 (22)
With the current version comparison logic, 1.9.1 would mistakenly be considered an update for 1.10.0.
This problem can be solved by using proper version semantics (i.e. 1.9.1 < 1.10.0, so it would not be considered an update for 1.10.0).