From bbcc53e36d6ceef7704d793b6426a8c6b71f6978 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 --- AddonCatalogCacheCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AddonCatalogCacheCreator.py b/AddonCatalogCacheCreator.py index 9716868b..3481c3e0 100644 --- a/AddonCatalogCacheCreator.py +++ b/AddonCatalogCacheCreator.py @@ -163,7 +163,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 5bd3e077b52eb51db3da0b66815ef854324e9e4c 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 --- AddonCatalogCacheCreator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AddonCatalogCacheCreator.py b/AddonCatalogCacheCreator.py index 3481c3e0..3c9d6ba4 100644 --- a/AddonCatalogCacheCreator.py +++ b/AddonCatalogCacheCreator.py @@ -163,7 +163,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