Skip to content

Commit 0479437

Browse files
committed
sched 0.36: Make 'Unlock At Buzz' (unlocking the watch when the alarm goes off) default to true
1 parent a7c98ce commit 0479437

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/sched/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@
3636
0.33: Ensure default vibration pattern is longer
3737
0.34: Ensure ClockInfo updates if it's used to start a timer
3838
0.35: If you use 2v28 (or above) firmware, you can long-press on the snooze button to gain finer control over snooze lengths.
39+
0.36: Make 'Unlock At Buzz' (unlocking the watch when the alarm goes off) default to true

apps/sched/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ exports.newDefaultTimer = function () {
108108
exports.getSettings = function () {
109109
return Object.assign(
110110
{
111-
unlockAtBuzz: false,
111+
unlockAtBuzz: true,
112112
defaultSnoozeMillis: 600000, // 10 minutes
113113
defaultAutoSnooze: false,
114114
defaultDeleteExpiredTimers: true, // Always

apps/sched/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "sched",
33
"name": "Scheduler",
4-
"version": "0.35",
4+
"version": "0.36",
55
"description": "Scheduling library for alarms and timers",
66
"icon": "app.png",
77
"type": "scheduler",

0 commit comments

Comments
 (0)