Merge branch 'master' of https://github.com/lesderid/ympd into lesderid-master
authorAndrew Karpow <andy@ndyk.de>
Mon, 22 Jan 2018 03:58:17 +0000 (04:58 +0100)
committerAndrew Karpow <andy@ndyk.de>
Mon, 22 Jan 2018 03:58:17 +0000 (04:58 +0100)
1  2 
contrib/init.debian
contrib/ympd.default
contrib/ympd.service
htdocs/js/mpd.js
src/mpd_client.c
src/mpd_client.h
src/ympd.c

@@@ -35,7 -36,7 +36,7 @@@ DIRBLE_API_TOKEN=2e223c9909593b94fc6577
  # Load the VERBOSE setting and other rcS variables
  [ -f /etc/default/rcS ] && . /etc/default/rcS
  
- DAEMON_OPT="--user $YMPD_USER --mpdpass '$MPD_PASSWORD' --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT"
 -DAEMON_OPT="--user $YMPD_USER --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT --dirbletoken $DIRBLE_API_TOKEN"
++DAEMON_OPT="--user $YMPD_USER --mpdpass '$MPD_PASSWORD' --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT --dirbletoken $DIRBLE_API_TOKEN"
  
  do_start()
  {
@@@ -1,5 -1,5 +1,6 @@@
  MPD_HOST=localhost
  MPD_PORT=6600
 +MPD_PASSWORD=
  WEB_PORT=8080
  YMPD_USER=nobody
+ DIRBLE_API_TOKEN=2e223c9909593b94fc6577361a
@@@ -5,11 -5,11 +5,12 @@@ Requires=network.target local-fs.targe
  [Service]
  Environment=MPD_HOST=localhost
  Environment=MPD_PORT=6600
 +Environment=MPD_PASSWORD=
  Environment=WEB_PORT=8080
  Environment=YMPD_USER=nobody
+ Environment=DIRBLE_API_TOKEN=2e223c9909593b94fc6577361a
  EnvironmentFile=/etc/default/ympd
- ExecStart=/usr/bin/ympd --user $YMPD_USER --mpdpass "$MPD_PASSWORD" --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT
 -ExecStart=/usr/bin/ympd --user $YMPD_USER --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT --dirbletoken $DIRBLE_API_TOKEN
++ExecStart=/usr/bin/ympd --user $YMPD_USER --mpdpass "$MPD_PASSWORD" --webport $WEB_PORT --host $MPD_HOST --port $MPD_PORT --dirbletoken $DIRBLE_API_TOKE
  Type=simple
  
  [Install]
@@@ -29,7 -29,8 +29,9 @@@ var dirble_selected_cat = ""
  var dirble_catid = "";
  var dirble_page = 1;
  var isTouch = Modernizr.touch ? 1 : 0;
 +var filter = undefined;
+ var dirble_api_token = "";
+ var dirble_stations = false;
  
  var app = $.sammy(function() {
  
Simple merge
Simple merge
diff --cc src/ympd.c
@@@ -122,8 -124,8 +128,9 @@@ int main(int argc, char **argv
                          " -p, --port <port>\t\tconnect to mpd at port [6600]\n"
                          " -w, --webport [ip:]<port>\tlisten interface/port for webserver [8080]\n"
                          " -u, --user <username>\t\tdrop priviliges to user after socket bind\n"
+                         " -d, --dirbletoken <apitoken>\tDirble API token\n"
                          " -V, --version\t\t\tget version\n"
 +                        " -m, --mpdpass <password>\tspecifies the password to use when connecting to mpd\n"
                          " --help\t\t\t\tthis help\n"
                          , argv[0]);
                  return EXIT_FAILURE;