From 792e87e462cd3c331c9c4a282a0630464bc41a8b Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:24:00 -0500 Subject: [PATCH 1/7] Update registry.json --- registry.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/registry.json b/registry.json index a71da4a..d8664c7 100644 --- a/registry.json +++ b/registry.json @@ -79,6 +79,15 @@ "dependencies": [], "tags": ["GAMES"] }, + { + "name": "RAnki", + "uri": "RAnki", + "description": "Real Anki, with the real backend", + "author": "CrazyElectron", + "ABI": ["hf", "sf"], + "dependencies": [], + "tags": ["PRODUCTIVITY"] + }, { "name": "KWordle", "uri": "KWordle", From c244fef7d11effc91ae094a10d3c43e34fe8670d Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:38:04 -0500 Subject: [PATCH 2/7] add ranki installation and unisnstall --- RAnki/install.sh | 10 ++++++++++ RAnki/uninstall.sh | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100644 RAnki/install.sh create mode 100644 RAnki/uninstall.sh diff --git a/RAnki/install.sh b/RAnki/install.sh new file mode 100644 index 0000000..30f5ec0 --- /dev/null +++ b/RAnki/install.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +curl -fSL --progress-bar -o /mnt/us/extensions/ranki.zip https://github.com/crazy-electron/ranki/releases/latest/download/ranki.zip +unzip /mnt/us/extensions/ranki.zip +rm /mnt/us/extensions/ranki.zip +cp /mnt/us/extensions/ranki/shortcut_ranki.sh /mnt/us/documents/shortcut_ranki.sh + +exit 0 \ No newline at end of file diff --git a/RAnki/uninstall.sh b/RAnki/uninstall.sh new file mode 100644 index 0000000..c0190e8 --- /dev/null +++ b/RAnki/uninstall.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +rm -f /mnt/us/documents/shortcut_ranki.sh +rm -rf /mnt/us/extensions/ranki/ + +exit 0 \ No newline at end of file From 7ed5ad08fa9af4f301ce5269dd0ccf4a9ac8f70d Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:52:51 -0500 Subject: [PATCH 3/7] Add files via upload --- RAnki/install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RAnki/install.sh b/RAnki/install.sh index 30f5ec0..80023df 100644 --- a/RAnki/install.sh +++ b/RAnki/install.sh @@ -3,8 +3,9 @@ set -e curl -fSL --progress-bar -o /mnt/us/extensions/ranki.zip https://github.com/crazy-electron/ranki/releases/latest/download/ranki.zip -unzip /mnt/us/extensions/ranki.zip -rm /mnt/us/extensions/ranki.zip -cp /mnt/us/extensions/ranki/shortcut_ranki.sh /mnt/us/documents/shortcut_ranki.sh +cd /mnt/us/extensions/ +unzip ranki.zip +rm ranki.zip +cp ranki/shortcut_ranki.sh ../documents/shortcut_ranki.sh exit 0 \ No newline at end of file From 23edcb053795bff78da008ab02fb37fffae275fc Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:53:29 -0500 Subject: [PATCH 4/7] Update uninstall.sh --- RAnki/uninstall.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RAnki/uninstall.sh b/RAnki/uninstall.sh index c0190e8..195f795 100644 --- a/RAnki/uninstall.sh +++ b/RAnki/uninstall.sh @@ -2,7 +2,8 @@ set -e -rm -f /mnt/us/documents/shortcut_ranki.sh -rm -rf /mnt/us/extensions/ranki/ +cd /mnt/us/documents/ +rm -f shortcut_ranki.sh +rm -rf ../extensions/ranki/ -exit 0 \ No newline at end of file +exit 0 From 3241a43d932de6279a4ea7cb4364a905dcb61b3d Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:55:02 -0500 Subject: [PATCH 5/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cb24c5..b02a5a5 100644 --- a/README.md +++ b/README.md @@ -34,4 +34,4 @@ Current packages (22): Credits: - Dammit Jeff (KOReader, Gambatte-K2, ToggleAds, UpdateBlock Icons) -- GreenCat777 (Alpine Linux install.sh, uninstall.sh) +- GreenCat777 (Alpine Linux install.sh, uninstall.sh. RAnki install.sh, uninstall.sh) From e2a68aa9b2fd3f930f2e7204066e4ccae7b08b61 Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 13:57:09 -0500 Subject: [PATCH 6/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b02a5a5..fc6f3e6 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Current packages (22): - Toggle ADs - UpdateBlock Status - LARKPlayer +- RAnki - Alpine Linux Credits: From 9e490a56c181b11de2ad7402ffa15e244b44bf4b Mon Sep 17 00:00:00 2001 From: GreenCat777 Date: Wed, 18 Mar 2026 22:31:24 -0500 Subject: [PATCH 7/7] Update install.sh --- RAnki/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RAnki/install.sh b/RAnki/install.sh index 80023df..26fed37 100644 --- a/RAnki/install.sh +++ b/RAnki/install.sh @@ -8,4 +8,4 @@ unzip ranki.zip rm ranki.zip cp ranki/shortcut_ranki.sh ../documents/shortcut_ranki.sh -exit 0 \ No newline at end of file +exit 0