From 3394d6615166e55d8bbf45b9717bcd3333db67ff Mon Sep 17 00:00:00 2001 From: Miguel Astor Date: Thu, 26 Feb 2026 17:09:01 -0400 Subject: [PATCH] Include Horny category in game category badges Remove Horny from the filter list to display it in category badges. Only .hidden and favorite categories remain filtered. Co-Authored-By: Claude Sonnet 4.5 --- templates/brutalism.html | 4 ++-- templates/glassmorphism.html | 4 ++-- templates/neumorphism.html | 4 ++-- templates/platinum.html | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/brutalism.html b/templates/brutalism.html index bef39b6..8056bd4 100644 --- a/templates/brutalism.html +++ b/templates/brutalism.html @@ -1085,7 +1085,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1110,7 +1110,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/glassmorphism.html b/templates/glassmorphism.html index 85f9ba0..77a1ab9 100644 --- a/templates/glassmorphism.html +++ b/templates/glassmorphism.html @@ -1028,7 +1028,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1053,7 +1053,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/neumorphism.html b/templates/neumorphism.html index 7b60469..7e2235d 100644 --- a/templates/neumorphism.html +++ b/templates/neumorphism.html @@ -1068,7 +1068,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1093,7 +1093,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/platinum.html b/templates/platinum.html index 6aa52dc..548518b 100644 --- a/templates/platinum.html +++ b/templates/platinum.html @@ -873,7 +873,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -898,7 +898,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : '';