Removing non-ASCII characters

master
spycat111 2025-06-15 22:45:10 +02:00 committed by GitHub
parent 817e44afb1
commit 906e4ed64c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ const STATS_FONT_SIZE = 16;
function getSleepWindowStr() { function getSleepWindowStr() {
let a = ("0"+S.sleepStart).substr(-2) + ":00"; let a = ("0"+S.sleepStart).substr(-2) + ":00";
let b = ("0"+S.sleepEnd).substr(-2) + ":00"; let b = ("0"+S.sleepEnd).substr(-2) + ":00";
return a + "" + b; return a + "-" + b;
} }
function stability(arr, key, hours) { 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() { function setSleepWindow() {
let menu = { "": { title: "Select Start Hour" } }; let menu = { "": { title: "Select Start Hour" } };
@ -743,7 +743,7 @@ function showAbout() {
E.showAlert( E.showAlert(
"Circadian Wellness Clock v" + VERSION + "\n" + "Circadian Wellness Clock v" + VERSION + "\n" +
"Displays your CRS and BioTime.\n" + "Displays your CRS and BioTime.\n" +
"© 2025" "Copyright 2025"
).then(()=>{ ).then(()=>{
drawClock(); drawClock();
Bangle.setUI(uiOpts); Bangle.setUI(uiOpts);