From 28a10c350978cb26e7bc4babf2b2c72f942c7980 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 07:39:04 +0000 Subject: [PATCH] Align ads wording Co-authored-by: diluteoxygen <82773456+diluteoxygen@users.noreply.github.com> --- README.md | 2 +- index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 88a883f..0b6a772 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ We are going to mark the launchers on the following properties: | ☠️ | Dead/Discontinued | | 🧹 | No Ads | | 📢 | Mild Ads | -| 🚨 | Heavy Ads | +| 🚨 | Excessive Ads | | ⬆️⬇️ | Vertical Drawer | | ⬅️➡️ | Horizontal Drawer | | 🔀 | Multi-Layout Drawer | diff --git a/index.html b/index.html index 37d2a7e..18f12ac 100644 --- a/index.html +++ b/index.html @@ -513,7 +513,7 @@ const legend = [ { sym:"☠️", def:"Dead / Discontinued" }, { sym:"🧹", def:"No Ads" }, { sym:"📢", def:"Mild Ads" }, - { sym:"🚨", def:"Heavy Ads" }, + { sym:"🚨", def:"Excessive Ads" }, { sym:"⬆️⬇️", def:"Vertical Drawer" }, { sym:"⬅️➡️", def:"Horizontal Drawer" }, { sym:"🔀", def:"Multi-Layout Drawer" }, @@ -537,7 +537,7 @@ function priceBadge(p) { function adsLabel(a) { if (a === 'none') return '🧹 No Ads'; if (a === 'mild') return '📢 Mild Ads'; - if (a === 'excessive') return '🚨 Heavy Ads'; + if (a === 'excessive') return '🚨 Excessive Ads'; if (a === 'unknown') return ''; return ''; }