feat(shared-branding): add missing apps to registry + fix manadeck alias

Add Mukke, Photos, Planta, SkillTree, Playground, Arcade to mana-apps.ts
with icons and APP_URLS. Fix manadeck→cards subdomain alias in status
page generator so the tier badge renders for the renamed app.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-01 11:51:49 +02:00
parent 75a3ea2957
commit 99878472e1
3 changed files with 124 additions and 0 deletions

View file

@ -178,6 +178,8 @@ get_tier_badge() {
case "$subdomain" in *-api) return ;; esac
# Spezialfall: mana.how selbst → manacore (kein Tier)
[ "$subdomain" = "mana.how" ] && return
# Subdomain-Aliase (alte Subdomains → aktuelle App-IDs)
case "$subdomain" in manadeck) subdomain="cards" ;; esac
echo "$TIER_APPS" | while IFS='|' read -r id name tier st; do
[ "$id" = "$subdomain" ] || continue