From 267d1366e69ccbc9cb3ca6bf6c3cf3b8281bb6e5 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Wed, 25 Mar 2026 15:31:19 -0500 Subject: [PATCH 1/2] Disable the addon curation until we're ready (cherry picked from commit bbcc53e36d6ceef7704d793b6426a8c6b71f6978) --- AddonCatalogCacheCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AddonCatalogCacheCreator.py b/AddonCatalogCacheCreator.py index 9e170fc..3e770f5 100644 --- a/AddonCatalogCacheCreator.py +++ b/AddonCatalogCacheCreator.py @@ -159,7 +159,7 @@ def write(self, addon_id: Optional[str] = None) -> None: for addon_id, catalog_entries in catalog.items(): approved_entries: List[AddonCatalog.AddonCatalogEntry] = [] for entry in catalog_entries: - if entry.curated: + if entry.curated or True: # Disable curation until we are ready with the feature approved_entries.append(entry) if approved_entries: reduced_catalog[addon_id] = approved_entries From db865f7f7d0a0e649c008f893ba1c5e053f92f02 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 20:32:12 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci (cherry picked from commit 5bd3e077b52eb51db3da0b66815ef854324e9e4c) --- AddonCatalogCacheCreator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AddonCatalogCacheCreator.py b/AddonCatalogCacheCreator.py index 3e770f5..61f1e56 100644 --- a/AddonCatalogCacheCreator.py +++ b/AddonCatalogCacheCreator.py @@ -159,7 +159,9 @@ def write(self, addon_id: Optional[str] = None) -> None: for addon_id, catalog_entries in catalog.items(): approved_entries: List[AddonCatalog.AddonCatalogEntry] = [] for entry in catalog_entries: - if entry.curated or True: # Disable curation until we are ready with the feature + if ( + entry.curated or True + ): # Disable curation until we are ready with the feature approved_entries.append(entry) if approved_entries: reduced_catalog[addon_id] = approved_entries