From 906e4ed64c803685f81294393f82d083a46e97c5 Mon Sep 17 00:00:00 2001 From: spycat111 Date: Sun, 15 Jun 2025 22:45:10 +0200 Subject: [PATCH] Removing non-ASCII characters --- apps/crsclock/crsclock.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/crsclock/crsclock.js b/apps/crsclock/crsclock.js index 5a7c1bf9d2..e42cbd902a 100644 --- a/apps/crsclock/crsclock.js +++ b/apps/crsclock/crsclock.js @@ -83,7 +83,7 @@ const STATS_FONT_SIZE = 16; function getSleepWindowStr() { let a = ("0"+S.sleepStart).substr(-2) + ":00"; let b = ("0"+S.sleepEnd).substr(-2) + ":00"; - return a + "–" + b; + return a + "-" + b; } function stability(arr, key, hours) { @@ -518,7 +518,7 @@ function confirmResetAllData() { }); } -// Menu logic: Sleep window, hydration, BT calibration, theme, notifications, bio ref, about — unchanged, use as before +// Menu logic: Sleep window, hydration, BT calibration, theme, notifications, bio ref, about - unchanged, use as before function setSleepWindow() { let menu = { "": { title: "Select Start Hour" } }; @@ -743,7 +743,7 @@ function showAbout() { E.showAlert( "Circadian Wellness Clock v" + VERSION + "\n" + "Displays your CRS and BioTime.\n" + - "© 2025" + "Copyright 2025" ).then(()=>{ drawClock(); Bangle.setUI(uiOpts);