boris-behav-obs 8.27.4__py2.py3-none-any.whl → 8.27.5__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
boris/about.py CHANGED
@@ -43,9 +43,13 @@ def actionAbout_activated(self):
43
43
 
44
44
  programs_versions: list = ["MPV media player"]
45
45
 
46
- mpv_lib_version, mpv_lib_file_path = util.mpv_lib_version()
46
+ mpv_lib_version, mpv_lib_file_path, mpv_api_version = util.mpv_lib_version()
47
47
  programs_versions.append(
48
- f"Library version: {mpv_lib_version} file: {mpv_lib_file_path} python-mpv version: {util.python_mpv_script_version()}"
48
+ (
49
+ f"Library version: {mpv_lib_version} file: {mpv_lib_file_path}\n"
50
+ f"MPV API version: {mpv_api_version}\n"
51
+ f"python-mpv version: {util.python_mpv_script_version()}"
52
+ )
49
53
  )
50
54
 
51
55
  # ffmpeg
boris/dialog.py CHANGED
@@ -100,6 +100,7 @@ def global_error_message(exception_type, exception_value, traceback_object):
100
100
  f"Python {platform.python_version()} ({'64-bit' if sys.maxsize > 2**32 else '32-bit'})\n"
101
101
  f"Qt {QT_VERSION_STR} - PyQt {PYQT_VERSION_STR}\n"
102
102
  f"MPV library version: {util.mpv_lib_version()[0]}\n"
103
+ f"MPV API version: {util.mpv_lib_version()[2]}\n"
103
104
  f"MPV library file path: {util.mpv_lib_version()[1]}\n\n"
104
105
  f"Error succeded at {dt.datetime.now():%Y-%m-%d %H:%M}\n\n"
105
106
  )