From db575f2bb70f478002a87c2e8bac20d1817797a2 Mon Sep 17 00:00:00 2001 From: Miguel Astor Date: Thu, 26 Feb 2026 17:12:52 -0400 Subject: [PATCH] Include Horny category in category chart and table Remove Horny from category filter to display it in the categories chart and By Category table. Now only .hidden and favorite remain filtered. Co-Authored-By: Claude Sonnet 4.5 --- templates/brutalism.html | 2 +- templates/glassmorphism.html | 2 +- templates/neumorphism.html | 2 +- templates/platinum.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/brutalism.html b/templates/brutalism.html index 8056bd4..c4a7062 100644 --- a/templates/brutalism.html +++ b/templates/brutalism.html @@ -882,7 +882,7 @@ filtered.forEach(g => { if (g.categories && g.categories.length > 0) { g.categories.forEach(cat => { - if (cat === '.hidden' || cat === 'favorite' || cat === 'Horny') return; + if (cat === '.hidden' || cat === 'favorite') return; if (!categoryMap[cat]) { categoryMap[cat] = { name: cat, playtime: 0, gameCount: 0 }; } diff --git a/templates/glassmorphism.html b/templates/glassmorphism.html index 77a1ab9..d7a03f1 100644 --- a/templates/glassmorphism.html +++ b/templates/glassmorphism.html @@ -845,7 +845,7 @@ filtered.forEach(g => { if (g.categories && g.categories.length > 0) { g.categories.forEach(cat => { - if (cat === '.hidden' || cat === 'favorite' || cat === 'Horny') return; + if (cat === '.hidden' || cat === 'favorite') return; if (!categoryMap[cat]) { categoryMap[cat] = { name: cat, playtime: 0, gameCount: 0 }; } diff --git a/templates/neumorphism.html b/templates/neumorphism.html index 7e2235d..2fca968 100644 --- a/templates/neumorphism.html +++ b/templates/neumorphism.html @@ -885,7 +885,7 @@ filtered.forEach(g => { if (g.categories && g.categories.length > 0) { g.categories.forEach(cat => { - if (cat === '.hidden' || cat === 'favorite' || cat === 'Horny') return; + if (cat === '.hidden' || cat === 'favorite') return; if (!categoryMap[cat]) { categoryMap[cat] = { name: cat, playtime: 0, gameCount: 0 }; } diff --git a/templates/platinum.html b/templates/platinum.html index 548518b..b431fe8 100644 --- a/templates/platinum.html +++ b/templates/platinum.html @@ -716,7 +716,7 @@ filtered.forEach(g => { if (g.categories && g.categories.length > 0) { g.categories.forEach(cat => { - if (cat === '.hidden' || cat === 'favorite' || cat === 'Horny') return; + if (cat === '.hidden' || cat === 'favorite') return; if (!categoryMap[cat]) { categoryMap[cat] = { name: cat, playtime: 0, gameCount: 0 }; }