From ebc227601f6e2ec078ac11bc74fb32901075224c Mon Sep 17 00:00:00 2001
From: Cyborg Viktor <307551610+vpetersson-bot@users.noreply.github.com>
Date: Wed, 5 Aug 2026 16:56:12 +0000
Subject: [PATCH] Remove em dashes from the manifest and meta description
The app-store fetches this manifest at build time and renders its
description and summary straight onto signage-apps.com, so em dashes here
show up as em dashes on the store pages (/, /examples/, /timer/).
Rewrites the two manifest strings and the page meta description without
them. Copy only; no schema, settings or behaviour change.
---
.well-known/signage-app.json | 4 ++--
index.html | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.well-known/signage-app.json b/.well-known/signage-app.json
index dadeeba..5a78f07 100644
--- a/.well-known/signage-app.json
+++ b/.well-known/signage-app.json
@@ -2,8 +2,8 @@
"manifestVersion": "1",
"id": "timer",
"name": "Timer",
- "description": "A full-screen countdown / count-up timer for digital signage. Ticks the days, hours, minutes and seconds to a target instant, then counts up the elapsed time once it passes — so the same screen handles a launch countdown or a \"days since\" board. Set an optional title, time zone, and a message shown when the target is reached. Everything arrives in the launch URL, so one deployment times any event.",
- "summary": "Count down to — or up from — any moment.",
+ "description": "A full-screen countdown / count-up timer for digital signage. Ticks the days, hours, minutes and seconds to a target instant, then counts up the elapsed time once it passes, so the same screen handles a launch countdown or a \"days since\" board. Set an optional title, time zone, and a message shown when the target is reached. Everything arrives in the launch URL, so one deployment times any event.",
+ "summary": "Count down to or up from any moment.",
"vendor": "Screenly",
"tags": ["Countdown", "Clock", "Event"],
"homepage": "https://timer.srly.io/",
diff --git a/index.html b/index.html
index 596d7be..4b87019 100644
--- a/index.html
+++ b/index.html
@@ -16,7 +16,7 @@