From dd3ba11c0e827572c6ad29609669fc1c853e8799 Mon Sep 17 00:00:00 2001 From: Rafostar <40623528+Rafostar@users.noreply.github.com> Date: Mon, 9 Nov 2020 11:40:48 +0100 Subject: [PATCH] Set min GStreamer ver warning to 1.18.x --- clapper_src/debug.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clapper_src/debug.js b/clapper_src/debug.js index 66fea040..2d8fcb67 100644 --- a/clapper_src/debug.js +++ b/clapper_src/debug.js @@ -1,5 +1,5 @@ const { GLib, Gst } = imports.gi; -const REQ_GST_VERSION_MINOR = 16; +const REQ_GST_VERSION_MINOR = 18; function debug(msg, levelName) { @@ -22,7 +22,7 @@ function gstVersionCheck() return; debug( - 'clapper interface was designed to' + + 'Clapper was designed to' + ` work with GStreamer 1.${REQ_GST_VERSION_MINOR} or later.` + ` Your version is ${Gst.VERSION_MAJOR}.${Gst.VERSION_MINOR}.` + ' Please update GStreamer or expect some things to be broken.',