From 8dda01328f421fcb8d7d1413290219bdd75343e7 Mon Sep 17 00:00:00 2001 From: Etoh Date: Tue, 12 May 2020 19:33:07 +0100 Subject: [PATCH] Update mpv compatibility message --- syncplay/players/mpv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncplay/players/mpv.py b/syncplay/players/mpv.py index de0d50f..d70f894 100755 --- a/syncplay/players/mpv.py +++ b/syncplay/players/mpv.py @@ -41,7 +41,7 @@ class MpvPlayer(BasePlayer): the_reactor = reactor the_reactor.callFromThread(client.ui.showErrorMessage, "This version of mpv is not compatible with Syncplay. " - "Please use mpv >=0.29.0.", True) + "Please use mpv >=0.23.0.", True) the_reactor.callFromThread(client.stop) return @@ -49,7 +49,7 @@ class MpvPlayer(BasePlayer): if not constants.MPV_OSC_VISIBILITY_CHANGE_VERSION: client.ui.showDebugMessage( "This version of mpv is not known to be compatible with changing the OSC visibility. " - "Please use mpv >=0.28.0.") + "Please use mpv >=0.23.0.") return MpvPlayer(client, MpvPlayer.getExpandedPath(playerPath), filePath, args) @staticmethod