From 8724b19234706c488bdcd1cbe3c040a9abf321f3 Mon Sep 17 00:00:00 2001 From: flemming-it Date: Fri, 19 Jun 2026 01:49:09 +0200 Subject: [PATCH] =?UTF-8?q?feat(store):=20point=20the=20Recl=E2=88=86Im=20?= =?UTF-8?q?quick-add=20at=20its=20canonical=20index=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the raw store-index file in the public chain-modules/reclaim repo (git.flemming.ai/chain-modules/reclaim/raw/branch/main/store.yaml) — stable, no release-tag churn, fetched by the hub's StoreIndex::from_url. The availability probe flips the row to 'Add' automatically once reclaim publishes the file. Signed-off-by: flemming-it --- lib/widgets/chain_stores_dialog.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/widgets/chain_stores_dialog.dart b/lib/widgets/chain_stores_dialog.dart index 01e60b7..d84e091 100644 --- a/lib/widgets/chain_stores_dialog.dart +++ b/lib/widgets/chain_stores_dialog.dart @@ -292,7 +292,10 @@ class _SuggestedStore { final List<_SuggestedStore> _kSuggestedStores = <_SuggestedStore>[ _SuggestedStore( name: 'Recl∆Im', - url: 'https://releases.chain.flemming.ai/reclaim/store.yaml', + // Raw store-index file in the public chain-modules/reclaim repo — + // stable (no release-tag churn), updated by a plain git push as + // reclaim adds modules. The hub fetches it via StoreIndex::from_url. + url: 'https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/store.yaml', describe: (l) => l.storesSuggestedReclaimDesc, ), ];