Releases: RJNY/Obtainium-Emulation-Pack
v3.3.1
- Removes Duckstation (Stable)
- Fixes Duckstation (Beta)
I originally just ripped off the regex from the crowdsource website, but after using it for about a month, I realized the versioning was on a timestamp, causing obtainium to think Duckstation always needed to upgrade. I finally sat down and reworked the regex to always pull the latest version (it wasn't easy).
Getting versioning to work for Duckstation Stable is currently not possible. You can add the link, but it'll use current timestamp versioning, causing an update every second. This is because of how Duckstation displays updates on their website. If you absolutely must have the stable version, you can either use the play store, or allow obtainium to update Duckstation stable every day.
v3.3.0
v3.2.0
- Add Cemu
- Fix Lime3DS to point to new archive url (thanks @GlazedBelmont )
- Remove Odin Tools
v3.1.5
- Fix Turnip drivers (again)
- use new dolphin release format (thanks @jesstelford )
- add scummVM
v3.1.4
v3.1.3
v3.1.2
Fixes the Turnip driver config to support the new tag they dropped using a tag that breaks convention.
v3.1.1
v3.1.0
v3.0.2
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