1
0
Fork 0

Merge pull request #2690 from Rarder44/Messages-Light

fix for #2689
master
Gordon Williams 2023-04-17 10:03:44 +01:00 committed by GitHub
commit 9daa77d78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -7,3 +7,4 @@
1.3: icon changed 1.3: icon changed
1.4: new management of events implemented; removed code no longer used (from now the music will be managed by the Messagesgui app) 1.4: new management of events implemented; removed code no longer used (from now the music will be managed by the Messagesgui app)
1.5: Fix graphic bug; View via popup while there are other open apps 1.5: Fix graphic bug; View via popup while there are other open apps
1.6: fix for #2689; ( white screen )

View File

@ -467,7 +467,7 @@ const updateTimeout = function(){
if (settings.timeOut!="Off"){ if (settings.timeOut!="Off"){
removeTimeout(); removeTimeout();
if( callInProgress) return; //c'è una chiamata in corso -> no timeout if( callInProgress) return; //c'è una chiamata in corso -> no timeout
if( music!=undefined && EventQueue.length==0 ) return; //ho aperto l'interfaccia della musica e non ho messaggi davanti -> no timeout //if( typeof music !== 'undefined' && EventQueue.length==0 ) return; //ho aperto l'interfaccia della musica e non ho messaggi davanti -> no timeout
let time=parseInt(settings.timeOut); //the "s" will be trimmed by the parseInt let time=parseInt(settings.timeOut); //the "s" will be trimmed by the parseInt

View File

@ -1,7 +1,7 @@
{ {
"id": "messages_light", "id": "messages_light",
"name": "Messages Light", "name": "Messages Light",
"version": "1.5", "version": "1.6",
"description": "A light implementation of messages App (display notifications from iOS and Gadgetbridge/Android)", "description": "A light implementation of messages App (display notifications from iOS and Gadgetbridge/Android)",
"icon": "app.png", "icon": "app.png",
"type": "app", "type": "app",