diff options
author | David King <amigadave@amigadave.com> | 2023-04-10 09:14:55 +0100 |
---|---|---|
committer | David King <amigadave@amigadave.com> | 2023-04-10 09:14:55 +0100 |
commit | 20922d6a7dc203527f4b320e5cffcb5de8707400 (patch) | |
tree | 5a728d3c406ff628f7f7f4d4523c57a6da8cb65b | |
parent | d5f7109bbcdadd26374ea3a84ac07a9f44bcf0df (diff) | |
download | cheese-20922d6a7dc203527f4b320e5cffcb5de8707400.tar.gz |
Update NEWS for 44.0 release44.0
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | meson.build | 6 |
2 files changed, 15 insertions, 5 deletions
@@ -1,10 +1,20 @@ ChangeLog for Cheese -------------------- -version 43.0 - - TODO: code changes +version 44.0 + - Avoid creating duplicated camera devices + Devices detected in `cheese_camera_device_monitor_coldplug()` may get + duplicated, as Gstreamer will emit `GST_MESSAGE_DEVICE_ADDED` for them. + + While this issue could be fixed by reorganizing the initialization code, + let's go with a simple and robust solution and check if a + `CheeseCameraDevice` using the `GstDevice` is already present. + - build: Use GNOME module post_install() - Added/Updated Translations - ab, courtesy of Nart Tlisha + +version 43.0 + - TODO: code changes - be, courtesy of Vasil Pupkin - ie, courtesy of Olga Smirnova - ka, courtesy of Zurab Kargareteli, Ekaterine Papava diff --git a/meson.build b/meson.build index 1fa4049d..9484106a 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'cheese', ['c', 'vala'], - version: '43.0', + version: '44.0', license: 'GPL2', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.58.0', @@ -35,12 +35,12 @@ cheese_namespace = 'org.gnome.Cheese' # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A current = 8 -revision = 18 +revision = 19 age = 0 libcheese_version = '@0@.@1@.@2@'.format(current - age, age, revision) current = 26 -revision = 6 +revision = 7 age = 1 libcheese_gtk_version = '@0@.@1@.@2@'.format(current - age, age, revision) |