Skip to content

Commit 18bb51d

Browse files
author
thyttan
committed
podadrem: fix warning from linter no-unused-var
1 parent 163df7b commit 18bb51d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

apps/podadrem/ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Addict.
88
0.07: Remove just the specific listeners to not interfere with Quick Launch
99
when fastloading.
1010
0.08: Issue newline before GB commands (solves issue with console.log and ignored commands)
11-
0.09: Don't send the gadgetbridge wake command twice. Once should do since we
12-
issue newline before GB commands.
11+
0.09: Don't send the gadgetbridge wake command twice. Once should do since we issue newline before GB commands.
1312
0.10: Minor code improvements
13+
0.11: Fix a warning from the linter.

apps/podadrem/app.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ The functions for interacting with Android and the Podcast Addict app
127127
let pkg = "com.bambuna.podcastaddict";
128128
let standardCls = pkg + ".receiver.PodcastAddictPlayerReceiver";
129129
let updateCls = pkg + ".receiver.PodcastAddictBroadcastReceiver";
130-
let speed = 1.0;
130+
//let speed = 1.0;
131131

132132
let simpleSearch = "";
133133

@@ -269,15 +269,15 @@ let speedMenu = {
269269
}
270270
},
271271
"Regular Speed": () => {
272-
speed = 1.0;
272+
//speed = 1.0;
273273
btMsg("service", standardCls, "player.1xspeed");
274274
},
275275
"1.5x Regular Speed": () => {
276-
speed = 1.5;
276+
//speed = 1.5;
277277
btMsg("service", standardCls, "player.1.5xspeed");
278278
},
279279
"2x Regular Speed": () => {
280-
speed = 2.0;
280+
//speed = 2.0;
281281
btMsg("service", standardCls, "player.2xspeed");
282282
},
283283
//"Faster" : ()=>{speed+=0.1; speed=((speed>5.0)?5.0:speed); btMsg("service",standardCls,"player.customspeed",{arg1:speed});},

apps/podadrem/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "podadrem",
33
"name": "Podcast Addict Remote",
44
"shortName": "PA Remote",
5-
"version": "0.10",
5+
"version": "0.11",
66
"description": "Control Podcast Addict on your android device.",
77
"readme": "README.md",
88
"type": "app",

0 commit comments

Comments
 (0)