forked from FOSS/BangleApps
Merge pull request #1719 from zerodogg/messagesTimeoutMsgRemoval
Allow timeouts to run on the message list screenmaster
commit
944cbb1136
|
@ -45,3 +45,4 @@
|
||||||
0.30: Add new Icons (Youtube, Twitch, MS TODO, Teams, Snapchat, Signal, Post & DHL, Nina, Lieferando, Kalender, Discord, Corona Warn, Bibel)
|
0.30: Add new Icons (Youtube, Twitch, MS TODO, Teams, Snapchat, Signal, Post & DHL, Nina, Lieferando, Kalender, Discord, Corona Warn, Bibel)
|
||||||
0.31: Option to disable icon flashing
|
0.31: Option to disable icon flashing
|
||||||
0.32: Added an option to allow quiet mode to override message auto-open
|
0.32: Added an option to allow quiet mode to override message auto-open
|
||||||
|
0.33: Timeout from the message list screen if the message being displayed is removed and there is a timer going
|
||||||
|
|
|
@ -470,8 +470,6 @@ function checkMessages(options) {
|
||||||
// no new messages - go to clock?
|
// no new messages - go to clock?
|
||||||
if (options.clockIfAllRead && newMessages.length==0)
|
if (options.clockIfAllRead && newMessages.length==0)
|
||||||
return load();
|
return load();
|
||||||
// we don't have to time out of this screen...
|
|
||||||
cancelReloadTimeout();
|
|
||||||
active = "main";
|
active = "main";
|
||||||
// Otherwise show a menu
|
// Otherwise show a menu
|
||||||
E.showScroller({
|
E.showScroller({
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "messages",
|
"id": "messages",
|
||||||
"name": "Messages",
|
"name": "Messages",
|
||||||
"version": "0.32",
|
"version": "0.33",
|
||||||
"description": "App to display notifications from iOS and Gadgetbridge/Android",
|
"description": "App to display notifications from iOS and Gadgetbridge/Android",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"type": "app",
|
"type": "app",
|
||||||
|
|
Loading…
Reference in New Issue