diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-09-21 11:46:31 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-09-21 11:46:31 -0300 |
commit | 3f18b148224d93c8673ecab0eb93c2ec8ecc5f87 (patch) | |
tree | 99a65497a01a22b7e4ee19ba4e4e938853827d79 | |
parent | 3a0c6de8abe7f4470a16ea17c8185b4206fffa75 (diff) |
Bump version to 0.20.6video_device_selection
* Fix the maximum resolution on cameras with a scaler
(stepwise frame sizes);
* Properly handle the camera video device, by checking
their names at devfs and checking what V4L2 devices
support video capture streams;
* Add a dialog to allow changing the video device. It
is used when more than one cameras are available,
and called at the beginning of camorama, if there's
no previous value, or if it is invalid;
* When there are multiple cameras, add a new item at
the <View> menu, allowing changing the camera at
runtime.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r-- | ChangeLog | 15 | ||||
-rwxr-xr-x | configure | 22 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 27 insertions, 12 deletions
@@ -1,3 +1,18 @@ +2018-09-21 Mauro Carvalho Chehab <mchehab@kernel.org> + + * Fix the maximum resolution on cameras with a scaler + (stepwise frame sizes); + * Properly handle the camera video device, by checking + their names at devfs and checking what V4L2 devices + support video capture streams; + * Add a dialog to allow changing the video device. It + is used when more than one cameras are available, + and called at the beginning of camorama, if there's + no previous value, or if it is invalid; + * When there are multiple cameras, add a new item at + the <View> menu, allowing changing the camera at + runtime. + 2018-09-19 Mauro Carvalho Chehab <mchehab@kernel.org> * Use GSettings instead of Gconf-2 * better describe 'hostname' key at GSettings @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for camorama 0.20.5. +# Generated by GNU Autoconf 2.69 for camorama 0.20.6. # # Report bugs to <https://github.com/alessio/camorama>. # @@ -580,8 +580,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='camorama' PACKAGE_TARNAME='camorama' -PACKAGE_VERSION='0.20.5' -PACKAGE_STRING='camorama 0.20.5' +PACKAGE_VERSION='0.20.6' +PACKAGE_STRING='camorama 0.20.6' PACKAGE_BUGREPORT='https://github.com/alessio/camorama' PACKAGE_URL='' @@ -1322,7 +1322,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures camorama 0.20.5 to adapt to many kinds of systems. +\`configure' configures camorama 0.20.6 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1392,7 +1392,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of camorama 0.20.5:";; + short | recursive ) echo "Configuration of camorama 0.20.6:";; esac cat <<\_ACEOF @@ -1510,7 +1510,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -camorama configure 0.20.5 +camorama configure 0.20.6 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1812,7 +1812,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by camorama $as_me 0.20.5, which was +It was created by camorama $as_me 0.20.6, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2677,7 +2677,7 @@ fi # Define the identity of the package. PACKAGE='camorama' - VERSION='0.20.5' + VERSION='0.20.6' cat >>confdefs.h <<_ACEOF @@ -2777,7 +2777,7 @@ ac_config_headers="$ac_config_headers config.h" $as_echo "#define PACKAGE camorama" >>confdefs.h -$as_echo "#define VERSION 0.20.5" >>confdefs.h +$as_echo "#define VERSION 0.20.6" >>confdefs.h @@ -10576,7 +10576,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by camorama $as_me 0.20.5, which was +This file was extended by camorama $as_me 0.20.6, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -10642,7 +10642,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -camorama config.status 0.20.5 +camorama config.status 0.20.6 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 678b89f..f631423 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(camorama,0.20.5, https://github.com/alessio/camorama) +AC_INIT(camorama,0.20.6, https://github.com/alessio/camorama) AC_CONFIG_SRCDIR(src/main.c) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) |