Skip to content

Commit 4d38399

Browse files
authored
Merge pull request #3883 from spycat111/patch-3
Removing non-ASCII characters
2 parents 52962d2 + 906e4ed commit 4d38399

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/crsclock/crsclock.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const STATS_FONT_SIZE = 16;
8383
function getSleepWindowStr() {
8484
let a = ("0"+S.sleepStart).substr(-2) + ":00";
8585
let b = ("0"+S.sleepEnd).substr(-2) + ":00";
86-
return a + "" + b;
86+
return a + "-" + b;
8787
}
8888

8989
function stability(arr, key, hours) {
@@ -518,7 +518,7 @@ function confirmResetAllData() {
518518
});
519519
}
520520

521-
// Menu logic: Sleep window, hydration, BT calibration, theme, notifications, bio ref, about unchanged, use as before
521+
// Menu logic: Sleep window, hydration, BT calibration, theme, notifications, bio ref, about - unchanged, use as before
522522

523523
function setSleepWindow() {
524524
let menu = { "": { title: "Select Start Hour" } };
@@ -743,7 +743,7 @@ function showAbout() {
743743
E.showAlert(
744744
"Circadian Wellness Clock v" + VERSION + "\n" +
745745
"Displays your CRS and BioTime.\n" +
746-
"© 2025"
746+
"Copyright 2025"
747747
).then(()=>{
748748
drawClock();
749749
Bangle.setUI(uiOpts);

0 commit comments

Comments
 (0)