From 5e01bb1ee14bf233049c0cb71d37e442c9e7f2bd Mon Sep 17 00:00:00 2001 From: bitkarrot Date: Sun, 30 Aug 2026 19:04:56 -0700 Subject: [PATCH 1/3] Add lnurlmint v0.1.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Register lnurlmint (LUD-25 lnurlcash) — mint Lightning-funded bearer notes per-wallet. Notes circulate offline as lnurlw:// withdraw links and can be rotated, split, merged, or melted back to a BOLT-11 payment. --- extensions.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/extensions.json b/extensions.json index d67b7498..0d5a33ae 100644 --- a/extensions.json +++ b/extensions.json @@ -2335,6 +2335,18 @@ "short_description": "A reusable merchant ledger for open balances", "icon": "https://raw.githubusercontent.com/lnbits/tabs/main/static/image/tabs.png", "details_link": "https://raw.githubusercontent.com/lnbits/tabs/main/config.json" + }, + { + "id": "lnurlmint", + "repo": "https://github.com/bitkarrot/lnurlmint", + "name": "Lnurlmint", + "version": "0.1.2", + "min_lnbits_version": "1.5.4", + "short_description": "Mint Lightning-funded bearer notes (LUD-25 lnurlcash)", + "icon": "https://raw.githubusercontent.com/bitkarrot/lnurlmint/main/static/image/lnurlmint.png", + "details_link": "https://raw.githubusercontent.com/bitkarrot/lnurlmint/main/config.json", + "archive": "https://github.com/bitkarrot/lnurlmint/archive/refs/tags/v0.1.2.zip", + "hash": "e55e482b255e7aa5e15036dac9afc3b7249d7fe00208525adb8d3fd1edb27d27" } ] } \ No newline at end of file From 5f9c6b1fc164925d61ec0bbe9a6868fca68b2ae4 Mon Sep 17 00:00:00 2001 From: bitkarrot Date: Sun, 30 Aug 2026 19:10:55 -0700 Subject: [PATCH 2/3] fix(ci): use PR head repo for extensions manifest URL The jmeter CI hardcoded lnbits/lnbits-extensions in the LNBITS_EXTENSIONS_MANIFESTS raw URL, so fork PRs 404 because the branch only exists in the fork, not upstream. Use github.event.pull_request.head.repo.full_name (falls back to github.repository for push events) and github.event.pull_request.head.ref (falls back to github.ref_name) so the manifest is fetched from the correct repo for fork PRs. --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index f7a11210..0b6fe0ab 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -75,7 +75,7 @@ jobs: AUTH_HTTPS_ONLY: false AUTH_ALLOWED_METHODS: "user-id-only, username-password" LNBITS_EXTENSIONS_DEFAULT_INSTALL: "watchonly, satspay, tipjar, tpos, lnurlp, withdraw" - LNBITS_EXTENSIONS_MANIFESTS: "https://raw.githubusercontent.com/lnbits/lnbits-extensions/${{ github.head_ref || github.ref_name }}/extensions.json" + LNBITS_EXTENSIONS_MANIFESTS: "https://raw.githubusercontent.com/${{ github.event.pull_request.head.repo.full_name || github.repository }}/${{ github.event.pull_request.head.ref || github.ref_name }}/extensions.json" LNBITS_BACKEND_WALLET_CLASS: FakeWallet run: | git clone https://github.com/lnbits/lnbits.git From 6adb23eb7dac6003376daebb58c6fec5cee02029 Mon Sep 17 00:00:00 2001 From: bitkarrot <73979971+bitkarrot@users.noreply.github.com> Date: Wed, 2 Sep 2026 20:02:36 +0000 Subject: [PATCH 3/3] Update lnurlmint to v0.1.3 --- extensions.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions.json b/extensions.json index 0d5a33ae..dd520dca 100644 --- a/extensions.json +++ b/extensions.json @@ -2340,13 +2340,13 @@ "id": "lnurlmint", "repo": "https://github.com/bitkarrot/lnurlmint", "name": "Lnurlmint", - "version": "0.1.2", + "version": "0.1.3", "min_lnbits_version": "1.5.4", "short_description": "Mint Lightning-funded bearer notes (LUD-25 lnurlcash)", "icon": "https://raw.githubusercontent.com/bitkarrot/lnurlmint/main/static/image/lnurlmint.png", "details_link": "https://raw.githubusercontent.com/bitkarrot/lnurlmint/main/config.json", - "archive": "https://github.com/bitkarrot/lnurlmint/archive/refs/tags/v0.1.2.zip", - "hash": "e55e482b255e7aa5e15036dac9afc3b7249d7fe00208525adb8d3fd1edb27d27" + "archive": "https://github.com/bitkarrot/lnurlmint/archive/refs/tags/v0.1.3.zip", + "hash": "847cbc37767de1f4dfd1d5d41fc7426c4cc1e805c9c337209337da481027ec6c" } ] } \ No newline at end of file