Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/tangara-fw/commit/4a50ed775ef759c201dfc075b77e2f8bd391324a?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Make media buttons control use double click so it is less prone to accidental track skips

custom-try-329
Ondřej Hruška 3 weeks ago
parent 0e7f0732c5
commit 4a50ed775e
  1. 4
      src/tangara/input/input_media_buttons.cpp

@ -13,8 +13,8 @@ namespace input {
MediaButtons::MediaButtons(drivers::IGpios& gpios, audio::TrackQueue& queue)
: gpios_(gpios),
up_("upper", actions::nextTrack(queue), {}, {}, actions::volumeUp()),
down_("lower", actions::prevTrack(queue), {}, {}, actions::volumeDown()),
up_("upper", {}, actions::nextTrack(queue), {}, actions::volumeUp()),
down_("lower", {}, actions::prevTrack(queue), {}, actions::volumeDown()),
locked_(),
both_buttons_pressed_(false) {}

Loading…
Cancel
Save