From e72ae38b8eea342bc4fe71450e74bc94b8080a6c Mon Sep 17 00:00:00 2001 From: binhex Date: Sun, 1 Jun 2025 17:20:00 +0100 Subject: [PATCH 1/4] add in kenji-nx --- src/applications.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/applications.json b/src/applications.json index c730b12..1f7b0e4 100644 --- a/src/applications.json +++ b/src/applications.json @@ -144,6 +144,18 @@ "excludeFromExport": true } }, + { + "id": "org.kenjinx.android", + "url": "https://GitHub.com/Kenji-NX/Android-Releases", + "author": "Kenji-NX", + "name": "Kenji-NX", + "preferredApkIndex": 0, + "additionalSettings": "{\"includePrereleases\":false,\"fallbackToOlderReleases\":true,\"filterReleaseTitlesByRegEx\":\"\",\"filterReleaseNotesByRegEx\":\"\",\"verifyLatestTag\":false,\"dontSortReleasesList\":false,\"useLatestAssetDateAsReleaseDate\":false,\"releaseTitleAsVersion\":false,\"trackOnly\":false,\"versionExtractionRegEx\":\"\",\"matchGroupToUse\":\"\",\"versionDetection\":true,\"releaseDateAsVersion\":false,\"useVersionCodeAsOSVersion\":false,\"apkFilterRegEx\":\"\",\"invertAPKFilter\":false,\"autoApkFilterByArch\":true,\"appName\":\"\",\"shizukuPretendToBeGooglePlay\":false,\"allowInsecure\":false,\"exemptFromBackgroundUpdates\":false,\"skipUpdateNotifications\":false,\"about\":\"\",\"refreshBeforeDownload\":false}", + "categories": [ + "Emulator" + ], + "overrideSource": "GitHub" + }, { "id": "org.ppsspp.ppsspp", "url": "https://www.ppsspp.org/download", From 6d1776389396f18bda6eceac9608aefa2318672c Mon Sep 17 00:00:00 2001 From: binhex Date: Sun, 1 Jun 2025 17:27:21 +0100 Subject: [PATCH 2/4] add in kenji to table --- pages/table.md | 1 + scripts/generate-table.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/table.md b/pages/table.md index 0a5f9f5..3218b6e 100644 --- a/pages/table.md +++ b/pages/table.md @@ -12,6 +12,7 @@ | Dolphin Emulator (Dev build) | Add to Obtainium! | ✅ | | DuckStation (Beta) | Add to Obtainium! | ✅ | | Eden | Add to Obtainium! | ✅ | +| Kenji-NX | Add to Obtainium! | ✅ | | NetherSX2 Classic | Add to Obtainium! | ✅ | | NetherSX2 Classic (Pre-Release) | Add to Obtainium! | ❌ | | PPSSPP | Add to Obtainium! | ✅ | diff --git a/scripts/generate-table.py b/scripts/generate-table.py index 5afd85e..a7ca3cc 100644 --- a/scripts/generate-table.py +++ b/scripts/generate-table.py @@ -85,7 +85,7 @@ def main(input_file, output_file): if __name__ == "__main__": if len(sys.argv) != 3: - print("Usage: python json_to_markdown_by_category.py input.json output.md") + print("Usage: python generate-table.py input.json output.md") sys.exit(1) main(sys.argv[1], sys.argv[2]) From 1b395ce4c9b09e2d3339ec37455e432effc6f6b9 Mon Sep 17 00:00:00 2001 From: binhex Date: Sun, 1 Jun 2025 17:33:51 +0100 Subject: [PATCH 3/4] stitch markdown --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 62afdce..9b8302f 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ Download and Install the [latest release of Obtainium](https://github.com/ImranR | Dolphin Emulator (Dev build) | Add to Obtainium! | ✅ | | DuckStation (Beta) | Add to Obtainium! | ✅ | | Eden | Add to Obtainium! | ✅ | +| Kenji-NX | Add to Obtainium! | ✅ | | NetherSX2 Classic | Add to Obtainium! | ✅ | | NetherSX2 Classic (Pre-Release) | Add to Obtainium! | ❌ | | PPSSPP | Add to Obtainium! | ✅ | From 524903409131cce9981dffe47c762327690a0f97 Mon Sep 17 00:00:00 2001 From: binhex Date: Sun, 1 Jun 2025 17:38:16 +0100 Subject: [PATCH 4/4] fix legacy script name --- scripts/generate-readme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-readme.py b/scripts/generate-readme.py index 62d748f..c5492bc 100644 --- a/scripts/generate-readme.py +++ b/scripts/generate-readme.py @@ -22,7 +22,7 @@ def stitch_markdown_files(markdown_files, output_file="README.md"): if __name__ == "__main__": if len(sys.argv) < 2: - print("Usage: python stitch_markdown.py file1.md file2.md ... [fileN.md]") + print("Usage: python generate-readme.py file1.md file2.md ... [fileN.md]") sys.exit(1) input_files = sys.argv[1:]