From 46383d4d5547bca38a2a07ea01d67afa0166bedc Mon Sep 17 00:00:00 2001 From: Richard de Boer Date: Mon, 22 Nov 2021 13:18:01 +0100 Subject: [PATCH] gbmusic: fix "previous" button image --- apps.json | 2 +- apps/gbmusic/ChangeLog | 1 + apps/gbmusic/app.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps.json b/apps.json index 8d90a1d1a..e8a4f9737 100644 --- a/apps.json +++ b/apps.json @@ -3649,7 +3649,7 @@ "id": "gbmusic", "name": "Gadgetbridge Music Controls", "shortName": "Music Controls", - "version": "0.06", + "version": "0.07", "description": "Control the music on your Gadgetbridge-connected phone", "icon": "icon.png", "screenshots": [{"url":"screenshot_v1.png"},{"url":"screenshot_v2.png"}], diff --git a/apps/gbmusic/ChangeLog b/apps/gbmusic/ChangeLog index 42ef60ab2..9cebf0a31 100644 --- a/apps/gbmusic/ChangeLog +++ b/apps/gbmusic/ChangeLog @@ -4,3 +4,4 @@ 0.04: Setting to disable touch controls, minor bugfix 0.05: Setting to disable double/triple press control, remove touch controls setting, reduce fadeout flicker 0.06: Bangle.js 2 support +0.07: Fix "previous" button image diff --git a/apps/gbmusic/app.js b/apps/gbmusic/app.js index 328b4a1ae..f514dfccd 100644 --- a/apps/gbmusic/app.js +++ b/apps/gbmusic/app.js @@ -303,7 +303,7 @@ function drawControls() { l.up.col = cc("volumeup" in tCommand); l.down.col = cc("volumedown" in tCommand); } - l.prev.icon = (stat==="play") ? "pause" : "prev"; + l.prev.icon = (stat==="play") ? "pause" : "previous"; l.prev.col = cc("prev" in tCommand || "pause" in tCommand); l.next.icon = (stat==="play") ? "next" : "play"; l.next.col = cc("next" in tCommand || "play" in tCommand);