From 0b6eecda6c39d07623f21b904180b03e97969809 Mon Sep 17 00:00:00 2001 From: Martijn Braam Date: Fri, 26 Nov 2021 03:20:10 +0100 Subject: [PATCH] Update documentation and release 0.4.1 --- README.md | 13 +++++++++++++ data/nl.brixit.Switcher.appdata.xml | 8 ++++++++ meson.build | 2 +- setup.py | 2 +- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9540010..986c55b 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,19 @@ Run the application:: There is also the `openswitcher-install.sh` script which will install the library, proxy and gtk application in /usr/local for a quick installation of all components. +External dependencies +--------------------- + +The only external dependency for pyatem is the python bindings for libusb. It contains a native compiled module so it +also requires a toolchain and python-dev headers at build time. + +OpenSwitcher depends on the python bindings from gtk3. + +OpenSwitcher-proxy only depends on pyatem for the core functionality but it might need more dependencies when loading +specific frontends or backends: + +* MQTT Frontend: paho-mqtt + Developing ---------- diff --git a/data/nl.brixit.Switcher.appdata.xml b/data/nl.brixit.Switcher.appdata.xml index 62bb370..c10f89a 100644 --- a/data/nl.brixit.Switcher.appdata.xml +++ b/data/nl.brixit.Switcher.appdata.xml @@ -31,6 +31,14 @@ https://todo.sr.ht/~martijnbraam/OpenAtem + + +

+ Drop the external hexdump dependency and move hexdump.py into pyatem since this library is unmaintained + and the source repository is gone. +

+
+

diff --git a/meson.build b/meson.build index 350381a..0272672 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('switcher', - version: '0.4.0', + version: '0.4.1', meson_version: '>= 0.50.0', default_options: ['warning_level=2']) diff --git a/setup.py b/setup.py index 3bba5a0..29ec240 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, Extension setup( name='pyatem', - version='0.4.0', + version='0.4.1', packages=['pyatem'], ext_modules=[Extension('pyatem.mediaconvert', ['pyatem/mediaconvertmodule.c'])], url='https://git.sr.ht/~martijnbraam/pyatem', -- 2.34.2