Skip to content

Releases: RJNY/Obtainium-Emulation-Pack

v3.3.1

10 Feb 02:09
Compare
Choose a tag to compare
  • 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

16 Dec 17:13
Compare
Choose a tag to compare
  • add Duckstation (stable)
  • add Duckstation (beta)
  • Update README

I am currently in between devices and don't have an android device to test this release on.
Please report if this is broken.

v3.2.0

25 Nov 05:52
Compare
Choose a tag to compare
  • Add Cemu
  • Fix Lime3DS to point to new archive url (thanks @GlazedBelmont )
  • Remove Odin Tools

v3.1.5

21 Sep 23:07
Compare
Choose a tag to compare
  • Fix Turnip drivers (again)
  • use new dolphin release format (thanks @jesstelford )
  • add scummVM

v3.1.4

11 Jul 13:47
Compare
Choose a tag to compare

Turnip drivers are using yet another tag that I wasn't expecting. Rather than try to extract the version from the tag, I'm going to use the entire tag, no matter what. This should hopefully stop version errors going forward.

v3.1.3

10 Jul 03:25
Compare
Choose a tag to compare

This release removes Sudachi, which is throwing errors because the project GitHub is returning a 404

v3.1.2

08 Jul 14:18
Compare
Choose a tag to compare

Fixes the Turnip driver config to support the new tag they dropped using a tag that breaks convention.

v3.1.1

02 Jul 05:24
Compare
Choose a tag to compare

MelonDS repository recycles the nightly-release tag for every release, making it unpredictable.

  • MelonDS Nightly now uses the latest asset upload as the release date
  • MelonDS now uses the release date as the pseudo-version

v3.1.0

02 Jul 04:23
Compare
Choose a tag to compare
  • Adds the following:
    • melonDS (stable)
    • PPSSPP

v3.0.2

27 May 18:05
Compare
Choose a tag to compare

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

https://regexr.com/80sva

And indeed, Obtainium is picking up the newest version

Big thanks to @GlazedBelmont and @ianmacd for identifying this issue and helping solve this mystery