diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2018-04-20 14:16:28 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2018-04-20 14:16:28 +0200 |
commit | 48f6d7c2ebb66bfe2d7070e5bb736e2d22c14da9 (patch) | |
tree | b62fd13ca42fc347ca3fc21876d999bde24ec388 | |
parent | 6b414014de24dd9671e491c765c7c5535cd05d40 (diff) | |
download | uca-48f6d7c2ebb66bfe2d7070e5bb736e2d22c14da9.tar.gz uca-48f6d7c2ebb66bfe2d7070e5bb736e2d22c14da9.tar.bz2 uca-48f6d7c2ebb66bfe2d7070e5bb736e2d22c14da9.tar.xz uca-48f6d7c2ebb66bfe2d7070e5bb736e2d22c14da9.zip |
Release version 2.3.0
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | NEWS | 30 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 33 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a04ce41..11a337d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,8 +18,8 @@ set(UCA_DESCRIPTION "Unified Camera Access") # These are software release versions set(UCA_VERSION_MAJOR "2") -set(UCA_VERSION_MINOR "2") -set(UCA_VERSION_PATCH "1") +set(UCA_VERSION_MINOR "3") +set(UCA_VERSION_PATCH "0") set(UCA_VERSION_STRING "${UCA_VERSION_MAJOR}.${UCA_VERSION_MINOR}.${UCA_VERSION_PATCH}") # Increase the ABI version when binary compatibility cannot be guaranteed, e.g. @@ -1,6 +1,36 @@ Changelog ========= +Changes in libuca 2.3.0 +----------------------- + +Released on April 20th 2018. + +Enhancements: + +- Besides CMake we now also support meson +- mock: provide setter/getter for test-enum +- mock: add a custom enum type for test purposes +- mock: receive SIGUSR1 to simulate external trigger +- grab: measure time per frame grab +- grab: allow filename to be a format specifier +- grab: show progress during acquisition +- gui: use glib-resources to bake in UI + +Fixes: + +- Parse enum properties properly +- Stop construction and exit early on error + +Breaks and changes: + +- Raise minimum GLib version to 2.38 +- Abort construction if props cannot be parsed +- grab: drop --write-tiff and guess from file suffix +- grab: drop support for --duration +- grab: do not write at all if --output is not given + + Changes in libuca 2.2.1 ----------------------- diff --git a/meson.build b/meson.build index 5fdc6cf..c696123 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libuca', 'c', - version: '2.2.1' + version: '2.3.0' ) version = meson.project_version() |