Closed Jamalam360 closed 2 years ago
Notify uses the FLoader version parsing and comparison API, but it is limited in that it can't parse versions like 1.1.3-rc1 or 1.5.4+1.17
1.1.3-rc1
1.5.4+1.17
A lot of mods use this kind of format, so it will be necessary to implement our own version parsing system to support as many mods as possible.
It should also use sensible defaults if the parsing fails.
After looking around, something like this could be used.
This was an issue with regex parsing. Now fixed with our new pattern
Notify uses the FLoader version parsing and comparison API, but it is limited in that it can't parse versions like
1.1.3-rc1
or1.5.4+1.17
A lot of mods use this kind of format, so it will be necessary to implement our own version parsing system to support as many mods as possible.
It should also use sensible defaults if the parsing fails.