Hey folks,
Sorry for two releases so closely together, but I believe I've solved this Turnip mystery once and for all. (receipts below)
I assumed that both "Filter Release Titles By Regular Expression" and "Version String Extraction RegEx" filtered by title, but only the former does. The latter is matching on the version tags 🤦♂️
https://github.com/K11MCH1/AdrenoToolsDrivers/tags?after=v744.4
The reason why my first solution didn't work v\d+\.\d+\.\d+
is because Obtainium wouldn't be able to reconsile the difference between v24.1.0_a
and v24.1.0_b
. It has to match the rest of the string.
Therefore; something like v\d+\.\d+\.\d+.*
would absolutely work.
Here is a regexr of what I believe the test suite should be going forward
And indeed, Obtainium is picking up the newest version
Big thanks to @GlazedBelmont and @ianmacd for identifying this issue and helping solve this mystery