forked from FOSS/BangleApps
podadrem: Send GB wake command only once
...instead of twice like we did before. It should not be needed now we issue a newline before GB commands.master
parent
2cd1caa2bd
commit
55429b2c67
|
@ -8,3 +8,5 @@ Addict.
|
|||
0.07: Remove just the specific listeners to not interfere with Quick Launch
|
||||
when fastloading.
|
||||
0.08: Issue newline before GB commands (solves issue with console.log and ignored commands)
|
||||
0.09: Don't send the gadgetbridge wake command twice. Once should do since we
|
||||
issue newline before GB commands.
|
||||
|
|
|
@ -67,7 +67,6 @@ let touchHandler = function(_, xy) {
|
|||
} else if ((R.x-1<x && x<R.x+len) && (R.y2-len<y && y<R.y2+1)) {
|
||||
//Wake
|
||||
gadgetbridgeWake();
|
||||
gadgetbridgeWake();
|
||||
} else if ((R.x2-len<x && x<R.x2+1) && (R.y-1<y && y<R.y+len)) {
|
||||
//Srch
|
||||
Bangle.removeListener("touch", touchHandler);
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "podadrem",
|
||||
"name": "Podcast Addict Remote",
|
||||
"shortName": "PA Remote",
|
||||
"version": "0.08",
|
||||
"version": "0.09",
|
||||
"description": "Control Podcast Addict on your android device.",
|
||||
"readme": "README.md",
|
||||
"type": "app",
|
||||
|
|
Loading…
Reference in New Issue