From 56fdba228f8eb36ed90565c94a9776da1d6f558d Mon Sep 17 00:00:00 2001 From: bitcoinafterlife Date: Fri, 17 Jul 2026 17:15:19 +0000 Subject: [PATCH] Update index.html Fix latest-release download links The homepage built the download and signature URLs from an outdated filename scheme (bal_.zip / .asc). Update them to the current release asset names: bal_electrum_plugin_.zip and .zip.sig. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index bb86f80..cce4a64 100644 --- a/index.html +++ b/index.html @@ -629,9 +629,9 @@ items.forEach(d => { if (data && data.tag_name) { const tag = data.tag_name; link.textContent = tag; - link.href = 'https://bitcoin-after.life/gitea/bitcoinafterlife/bal-electrum-plugin/releases/download/' + tag + '/bal_' + tag + '.zip'; + link.href = 'https://bitcoin-after.life/gitea/bitcoinafterlife/bal-electrum-plugin/releases/download/' + tag + '/bal_electrum_plugin_' + tag + '.zip'; if (sig) { - sig.href = 'https://bitcoin-after.life/gitea/bitcoinafterlife/bal-electrum-plugin/releases/download/' + tag + '/bal_' + tag + '.zip.asc'; + sig.href = 'https://bitcoin-after.life/gitea/bitcoinafterlife/bal-electrum-plugin/releases/download/' + tag + '/bal_electrum_plugin_' + tag + '.zip.sig'; sig.style.display = 'inline'; } }