diff options
-rw-r--r-- | ChangeLog | 20 | ||||
-rwxr-xr-x | configure | 22 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 29 insertions, 15 deletions
@@ -1,10 +1,24 @@ -2018-09-05 Mauro Carvalho Chehab <mchehab@kernel.org> +2018-09-07 Mauro Carvalho Chehab <mchehab@kernel.org> * Enable gcc warnings and clean them * Fix coding style issues * Fix Wayland camera display with Gtk 3 * Scale image if camera resolution is too high - * Change default to use gtk3 - * Prevent a potential bug with YUV420 format. + * Change default to use Gtk3 + * Prevent a potential bug with YUV420 format + * Add experimental support for Gtk 4 (version 3.92) + * Use GApplication for Gtk 3 and Gtk 4 + * Better name Gconf2 internal vars + * Keep persistence at camera device name + * Solve some memory leaks + * Improve visual with Gtk 3 using icons + It should be noticed that Prisma disables icon + by default. + * Solve a bug where remote map were happening even + if disabled. + * Solve a bug when closing preferences via the window + (x) button + * Get rid of the tray icon logic, as it is pretty + much useless. 2018-09-03 Mauro Carvalho Chehab <mchehab@kernel.org> * Update icons, desktop files @@ -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.2. +# Generated by GNU Autoconf 2.69 for camorama 0.20.3. # # 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.2' -PACKAGE_STRING='camorama 0.20.2' +PACKAGE_VERSION='0.20.3' +PACKAGE_STRING='camorama 0.20.3' PACKAGE_BUGREPORT='https://github.com/alessio/camorama' PACKAGE_URL='' @@ -1325,7 +1325,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.2 to adapt to many kinds of systems. +\`configure' configures camorama 0.20.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1395,7 +1395,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of camorama 0.20.2:";; + short | recursive ) echo "Configuration of camorama 0.20.3:";; esac cat <<\_ACEOF @@ -1517,7 +1517,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -camorama configure 0.20.2 +camorama configure 0.20.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1819,7 +1819,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.2, which was +It was created by camorama $as_me 0.20.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2684,7 +2684,7 @@ fi # Define the identity of the package. PACKAGE='camorama' - VERSION='0.20.2' + VERSION='0.20.3' cat >>confdefs.h <<_ACEOF @@ -2784,7 +2784,7 @@ ac_config_headers="$ac_config_headers config.h" $as_echo "#define PACKAGE camorama" >>confdefs.h -$as_echo "#define VERSION 0.20.2" >>confdefs.h +$as_echo "#define VERSION 0.20.3" >>confdefs.h @@ -10517,7 +10517,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.2, which was +This file was extended by camorama $as_me 0.20.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -10583,7 +10583,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.2 +camorama config.status 0.20.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index c91221e..a2a9472 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(camorama,0.20.2, https://github.com/alessio/camorama) +AC_INIT(camorama,0.20.3, https://github.com/alessio/camorama) AC_CONFIG_SRCDIR(src/main.c) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) |