Add a back button to "No messages" menu on cutting edge (or 2v19+) firmwares. Don't bump version as latest not released yet
parent
daeae91e15
commit
67908cd77b
|
|
@ -97,3 +97,4 @@
|
||||||
0.70: Handle nav messages from newer Gadgetbridge builds that output distance as a String
|
0.70: Handle nav messages from newer Gadgetbridge builds that output distance as a String
|
||||||
If we receive a 'music' message and we're in the messages app (but not showing a message) show music (#2814)
|
If we receive a 'music' message and we're in the messages app (but not showing a message) show music (#2814)
|
||||||
0.71: Cancel buzzing when watch unlocked, or when different messages viewed
|
0.71: Cancel buzzing when watch unlocked, or when different messages viewed
|
||||||
|
On 2v18.64+ firmware, 'No Messages' now has a 'back' button
|
||||||
|
|
@ -414,8 +414,9 @@ function checkMessages(options) {
|
||||||
if (!options.clockIfNoMsg) return E.showPrompt(/*LANG*/"No Messages",{
|
if (!options.clockIfNoMsg) return E.showPrompt(/*LANG*/"No Messages",{
|
||||||
title:/*LANG*/"Messages",
|
title:/*LANG*/"Messages",
|
||||||
img:require("heatshrink").decompress(atob("kkk4UBrkc/4AC/tEqtACQkBqtUDg0VqAIGgoZFDYQIIM1sD1QAD4AIBhnqA4WrmAIBhc6BAWs8AIBhXOBAWz0AIC2YIC5wID1gkB1c6BAYFBEQPqBAYXBEQOqBAnDAIQaEnkAngaEEAPDFgo+IKA5iIOhCGIAFb7RqAIGgtUBA0VqobFgNVA")),
|
img:require("heatshrink").decompress(atob("kkk4UBrkc/4AC/tEqtACQkBqtUDg0VqAIGgoZFDYQIIM1sD1QAD4AIBhnqA4WrmAIBhc6BAWs8AIBhXOBAWz0AIC2YIC5wID1gkB1c6BAYFBEQPqBAYXBEQOqBAnDAIQaEnkAngaEEAPDFgo+IKA5iIOhCGIAFb7RqAIGgtUBA0VqobFgNVA")),
|
||||||
buttons : {/*LANG*/"Ok":1}
|
buttons : {/*LANG*/"Ok":1},
|
||||||
}).then(() => { load() });
|
back: () => load()
|
||||||
|
}).then(() => load());
|
||||||
return load();
|
return load();
|
||||||
}
|
}
|
||||||
// we have >0 messages
|
// we have >0 messages
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue