From 843e5a05652b2f8f7e988bc8dd2ddb3532902a70 Mon Sep 17 00:00:00 2001 From: Et0h Date: Fri, 19 Jun 2015 00:02:03 +0100 Subject: [PATCH] Make VLC show URL instead of Title for #65 --- resources/lua/intf/syncplay.lua | 6 +++--- syncplay/constants.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lua/intf/syncplay.lua b/resources/lua/intf/syncplay.lua index 66bac0c..bacf9d6 100644 --- a/resources/lua/intf/syncplay.lua +++ b/resources/lua/intf/syncplay.lua @@ -5,7 +5,7 @@ Principal author: Etoh Other contributors: DerGenaue, jb Project: http://syncplay.pl/ - Version: 0.2.6 + Version: 0.2.7 Note: * This interface module is intended to be used in conjunction with Syncplay. @@ -84,7 +84,7 @@ You may also need to re-copy the syncplay.lua file when you update VLC. --]==========================================================================] -local connectorversion = "0.2.6" +local connectorversion = "0.2.7" local vlcversion = vlc.misc.version() local durationdelay = 500000 -- Pause for get_duration command etc for increased reliability (uses microseconds) local loopsleepduration = 2500 -- Pause for every event loop (uses microseconds) @@ -330,7 +330,7 @@ function get_filepath () else local metas = item:metas() if metas and metas["title"] and string.len(metas["title"]) > 0 then - response = ":::(Stream: "..metas["title"]..")" + response = metas["url"] else response = unknownstream end diff --git a/syncplay/constants.py b/syncplay/constants.py index 498848f..adb63ea 100644 --- a/syncplay/constants.py +++ b/syncplay/constants.py @@ -63,7 +63,7 @@ COMMANDS_AUTH = ['a','auth'] COMMANDS_TOGGLE = ['t','toggle'] MPC_MIN_VER = "1.6.4" VLC_MIN_VERSION = "2.2.1" -VLC_INTERFACE_MIN_VERSION = "0.2.6" +VLC_INTERFACE_MIN_VERSION = "0.2.7" VLC_LATENCY_ERROR_THRESHOLD = 2.0 CONTROLLED_ROOMS_MIN_VERSION = "1.3.0" USER_READY_MIN_VERSION = "1.3.0"