From 6c08d37df7e59ae1a6e39218ba95c430239ae706 Mon Sep 17 00:00:00 2001 From: Urban Wallasch Date: Tue, 18 May 2021 03:19:37 +0200 Subject: [PATCH] * Include ffpreview version number in index file and initial window title. --- ffpreview.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ffpreview.py b/ffpreview.py index 8c32aa8..b22eef0 100755 --- a/ffpreview.py +++ b/ffpreview.py @@ -1162,6 +1162,7 @@ def get_thinfo(vfile, thdir): 'scene_thresh': cfg['scene_thresh'], 'customvf': cfg['customvf'], 'date': 0, + 'ffpreview': _FFPREVIEW_VERSION, 'th': [] } meta, ok = get_meta(vfile) @@ -1299,7 +1300,7 @@ def main(): os.environ['QT_LOGGING_RULES'] = 'qt5ct.debug=false' app = QApplication(sys.argv) app.setApplicationName('ffpreview') - root = sMainWindow(title='ffpreview') + root = sMainWindow(title='ffpreview %s' % _FFPREVIEW_VERSION) # start console debugging thread, if _FF_DEBUG is set if _FF_DEBUG: -- 2.30.2