diff -Nru gnome-control-center-3.24.1/aclocal.m4 gnome-control-center-3.24.2/aclocal.m4 --- gnome-control-center-3.24.1/aclocal.m4 2017-04-12 09:32:51.000000000 +0000 +++ gnome-control-center-3.24.2/aclocal.m4 2017-05-10 08:11:59.000000000 +0000 @@ -20,6 +20,224 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) +# gnome-common.m4 +# +# serial 3 +# + +AU_DEFUN([GNOME_DEBUG_CHECK], +[ + AX_CHECK_ENABLE_DEBUG([no],[GNOME_ENABLE_DEBUG]) +], +[[$0: This macro is deprecated. You should use AX_CHECK_ENABLE_DEBUG instead and +replace uses of GNOME_ENABLE_DEBUG with ENABLE_DEBUG. +See: http://www.gnu.org/software/autoconf-archive/ax_check_enable_debug.html#ax_check_enable_debug]]) + +dnl GNOME_MAINTAINER_MODE_DEFINES () +dnl define DISABLE_DEPRECATED +dnl +AU_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], +[ + AC_REQUIRE([AM_MAINTAINER_MODE]) + + DISABLE_DEPRECATED="" + if test $USE_MAINTAINER_MODE = yes; then + DOMAINS="GCONF BONOBO BONOBO_UI GNOME LIBGLADE GNOME_VFS WNCK LIBSOUP" + for DOMAIN in $DOMAINS; do + DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES" + done + fi + + AC_SUBST(DISABLE_DEPRECATED) +], +[[$0: This macro is deprecated. All of the modules it disables deprecations for +are obsolete. Remove it and all uses of DISABLE_DEPRECATED.]]) + +# gnome-compiler-flags.m4 +# +# serial 4 +# + +dnl GNOME_COMPILE_WARNINGS +dnl Turn on many useful compiler warnings and substitute the result into +dnl WARN_CFLAGS +dnl For now, only works on GCC +dnl Pass the default value of the --enable-compile-warnings configure option as +dnl the first argument to the macro, defaulting to 'yes'. +dnl Additional warning/error flags can be passed as an optional second argument. +dnl +dnl For example: GNOME_COMPILE_WARNINGS([maximum],[-Werror=some-flag -Wfoobar]) +AU_DEFUN([GNOME_COMPILE_WARNINGS],[ + dnl ****************************** + dnl More compiler warnings + dnl ****************************** + + AC_ARG_ENABLE(compile-warnings, + AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], + [Turn on compiler warnings]),, + [enable_compile_warnings="m4_default([$1],[yes])"]) + + if test "x$GCC" != xyes; then + enable_compile_warnings=no + fi + + warning_flags= + realsave_CFLAGS="$CFLAGS" + + dnl These are warning flags that aren't marked as fatal. Can be + dnl overridden on a per-project basis with -Wno-foo. + base_warn_flags=" \ + -Wall \ + -Wstrict-prototypes \ + -Wnested-externs \ + " + + dnl These compiler flags typically indicate very broken or suspicious + dnl code. Some of them such as implicit-function-declaration are + dnl just not default because gcc compiles a lot of legacy code. + dnl We choose to make this set into explicit errors. + base_error_flags=" \ + -Werror=missing-prototypes \ + -Werror=implicit-function-declaration \ + -Werror=pointer-arith \ + -Werror=init-self \ + -Werror=format-security \ + -Werror=format=2 \ + -Werror=missing-include-dirs \ + -Werror=return-type \ + " + + dnl Additional warning or error flags provided by the module author to + dnl allow stricter standards to be imposed on a per-module basis. + dnl The author can pass -W or -Werror flags here as they see fit. + additional_flags="m4_default([$2],[])" + + case "$enable_compile_warnings" in + no) + warning_flags="-w" + ;; + minimum) + warning_flags="-Wall" + ;; + yes|maximum|error) + warning_flags="$base_warn_flags $base_error_flags $additional_flags" + ;; + *) + AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) + ;; + esac + + if test "$enable_compile_warnings" = "error" ; then + warning_flags="$warning_flags -Werror" + fi + + dnl Check whether GCC supports the warning options + for option in $warning_flags; do + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $option" + AC_MSG_CHECKING([whether gcc understands $option]) + AC_TRY_COMPILE([], [], + has_option=yes, + has_option=no,) + CFLAGS="$save_CFLAGS" + AC_MSG_RESULT([$has_option]) + if test $has_option = yes; then + tested_warning_flags="$tested_warning_flags $option" + fi + unset has_option + unset save_CFLAGS + done + unset option + CFLAGS="$realsave_CFLAGS" + AC_MSG_CHECKING(what warning flags to pass to the C compiler) + AC_MSG_RESULT($tested_warning_flags) + + AC_ARG_ENABLE(iso-c, + AS_HELP_STRING([--enable-iso-c], + [Try to warn if code is not ISO C ]),, + [enable_iso_c=no]) + + AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) + complCFLAGS= + if test "x$enable_iso_c" != "xno"; then + if test "x$GCC" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) complCFLAGS="$complCFLAGS -ansi" ;; + esac + case " $CFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) complCFLAGS="$complCFLAGS -pedantic" ;; + esac + fi + fi + AC_MSG_RESULT($complCFLAGS) + + WARN_CFLAGS="$tested_warning_flags $complCFLAGS" + AC_SUBST(WARN_CFLAGS) +], +[[$0: This macro is deprecated. You should use AX_COMPILER_FLAGS instead and +eliminate use of --enable-iso-c. +See: http://www.gnu.org/software/autoconf-archive/ax_compiler_flags.html#ax_compiler_flags]]) + +dnl For C++, do basically the same thing. + +AU_DEFUN([GNOME_CXX_WARNINGS],[ + AC_ARG_ENABLE(cxx-warnings, + AS_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] + [Turn on compiler warnings.]),, + [enable_cxx_warnings="m4_default([$1],[minimum])"]) + + AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) + warnCXXFLAGS= + if test "x$GXX" != xyes; then + enable_cxx_warnings=no + fi + if test "x$enable_cxx_warnings" != "xno"; then + if test "x$GXX" = "xyes"; then + case " $CXXFLAGS " in + *[\ \ ]-Wall[\ \ ]*) ;; + *) warnCXXFLAGS="-Wall -Wno-unused" ;; + esac + + ## -W is not all that useful. And it cannot be controlled + ## with individual -Wno-xxx flags, unlike -Wall + if test "x$enable_cxx_warnings" = "xyes"; then + warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" + fi + fi + fi + AC_MSG_RESULT($warnCXXFLAGS) + + AC_ARG_ENABLE(iso-cxx, + AS_HELP_STRING([--enable-iso-cxx], + [Try to warn if code is not ISO C++ ]),, + [enable_iso_cxx=no]) + + AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) + complCXXFLAGS= + if test "x$enable_iso_cxx" != "xno"; then + if test "x$GXX" = "xyes"; then + case " $CXXFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; + esac + + case " $CXXFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; + esac + fi + fi + AC_MSG_RESULT($complCXXFLAGS) + + WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" + AC_SUBST(WARN_CXXFLAGS) +], +[[$0: This macro is deprecated. You should use AX_COMPILER_FLAGS instead and +eliminate use of --enable-iso-cxx. +See: http://www.gnu.org/software/autoconf-archive/ax_compiler_flags.html#ax_compiler_flags]]) + # nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software dnl Foundation, Inc. @@ -53,9 +271,9 @@ AC_SUBST([USE_NLS]) ]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 11 (pkg-config-0.29.1) - +dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +dnl serial 11 (pkg-config-0.29.1) +dnl dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl @@ -217,517 +435,117 @@ # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - m4_default([$4], [AC_MSG_ERROR( -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT])[]dnl - ]) -elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) - m4_default([$4], [AC_MSG_FAILURE( -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])[]dnl - ]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - $3 -fi[]dnl -])dnl PKG_CHECK_MODULES - - -dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -dnl [ACTION-IF-NOT-FOUND]) -dnl --------------------------------------------------------------------- -dnl Since: 0.29 -dnl -dnl Checks for existence of MODULES and gathers its build flags with -dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags -dnl and VARIABLE-PREFIX_LIBS from --libs. -dnl -dnl Note that if there is a possibility the first call to -dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to -dnl include an explicit call to PKG_PROG_PKG_CONFIG in your -dnl configure.ac. -AC_DEFUN([PKG_CHECK_MODULES_STATIC], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -_save_PKG_CONFIG=$PKG_CONFIG -PKG_CONFIG="$PKG_CONFIG --static" -PKG_CHECK_MODULES($@) -PKG_CONFIG=$_save_PKG_CONFIG[]dnl -])dnl PKG_CHECK_MODULES_STATIC - - -dnl PKG_INSTALLDIR([DIRECTORY]) -dnl ------------------------- -dnl Since: 0.27 -dnl -dnl Substitutes the variable pkgconfigdir as the location where a module -dnl should install pkg-config .pc files. By default the directory is -dnl $libdir/pkgconfig, but the default can be changed by passing -dnl DIRECTORY. The user can override through the --with-pkgconfigdir -dnl parameter. -AC_DEFUN([PKG_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([pkgconfigdir], - [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, - [with_pkgconfigdir=]pkg_default) -AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -])dnl PKG_INSTALLDIR - - -dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) -dnl -------------------------------- -dnl Since: 0.27 -dnl -dnl Substitutes the variable noarch_pkgconfigdir as the location where a -dnl module should install arch-independent pkg-config .pc files. By -dnl default the directory is $datadir/pkgconfig, but the default can be -dnl changed by passing DIRECTORY. The user can override through the -dnl --with-noarch-pkgconfigdir parameter. -AC_DEFUN([PKG_NOARCH_INSTALLDIR], -[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([noarch-pkgconfigdir], - [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, - [with_noarch_pkgconfigdir=]pkg_default) -AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -])dnl PKG_NOARCH_INSTALLDIR - - -dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -dnl ------------------------------------------- -dnl Since: 0.28 -dnl -dnl Retrieves the value of the pkg-config variable for the given module. -AC_DEFUN([PKG_CHECK_VAR], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl - -_PKG_CONFIG([$1], [variable="][$3]["], [$2]) -AS_VAR_COPY([$1], [pkg_cv_][$1]) - -AS_VAR_IF([$1], [""], [$5], [$4])dnl -])dnl PKG_CHECK_VAR - -dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES, -dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND], -dnl [DESCRIPTION], [DEFAULT]) -dnl ------------------------------------------ -dnl -dnl Prepare a "--with-" configure option using the lowercase -dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and -dnl PKG_CHECK_MODULES in a single macro. -AC_DEFUN([PKG_WITH_MODULES], -[ -m4_pushdef([with_arg], m4_tolower([$1])) - -m4_pushdef([description], - [m4_default([$5], [build with ]with_arg[ support])]) - -m4_pushdef([def_arg], [m4_default([$6], [auto])]) -m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) -m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) - -m4_case(def_arg, - [yes],[m4_pushdef([with_without], [--without-]with_arg)], - [m4_pushdef([with_without],[--with-]with_arg)]) - -AC_ARG_WITH(with_arg, - AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),, - [AS_TR_SH([with_]with_arg)=def_arg]) - -AS_CASE([$AS_TR_SH([with_]with_arg)], - [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], - [auto],[PKG_CHECK_MODULES([$1],[$2], - [m4_n([def_action_if_found]) $3], - [m4_n([def_action_if_not_found]) $4])]) - -m4_popdef([with_arg]) -m4_popdef([description]) -m4_popdef([def_arg]) - -])dnl PKG_WITH_MODULES - -dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES, -dnl [DESCRIPTION], [DEFAULT]) -dnl ----------------------------------------------- -dnl -dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES -dnl check._[VARIABLE-PREFIX] is exported as make variable. -AC_DEFUN([PKG_HAVE_WITH_MODULES], -[ -PKG_WITH_MODULES([$1],[$2],,,[$3],[$4]) - -AM_CONDITIONAL([HAVE_][$1], - [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"]) -])dnl PKG_HAVE_WITH_MODULES - -dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES, -dnl [DESCRIPTION], [DEFAULT]) -dnl ------------------------------------------------------ -dnl -dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after -dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make -dnl and preprocessor variable. -AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], -[ -PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4]) - -AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"], - [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) -])dnl PKG_HAVE_DEFINE_WITH_MODULES - -# =========================================================================== -# http://autoconf-archive.cryp.to/ax_check_enable_debug.html -# =========================================================================== -# -# SYNOPSIS -# -# Check for the presence of an --enable-debug option to configure and -# allow/avoid compiled debugging flags appropriately. -# -# AX_CHECK_ENABLE_DEBUG([enable by default=yes/info/profile/no], -# [ENABLE DEBUG VARIABLES …], -# [DISABLE DEBUG VARIABLES NDEBUG …]) -# -# DESCRIPTION -# -# Check for the presence of an --enable-debug option to configure, with the -# specified default value used when the option is not present. Return the -# value in the variable $ax_enable_debug. -# -# Specifying 'yes' adds '-g -O0' to the compilation flags for all languages. -# Specifying 'info' adds '-g' to the compilation flags. Specifying 'profile' -# adds '-g -pg' to the compilation flags and '-pg' to the linking flags. -# Otherwise, nothing is added. -# -# Define the variables listed in the second argument if debug is enabled, -# defaulting to no variables. Defines the variables listed in the third -# argument if debug is disabled, defaulting to NDEBUG. All lists of -# variables should be space-separated. -# -# If debug is not enabled, ensure AC_PROG_* will not add debugging flags. -# Should be invoked prior to any AC_PROG_* compiler checks. -# -# LAST MODIFICATION -# -# 2014-05-12 -# -# COPYLEFT -# -# Copyright (c) 2011 Rhys Ulerich -# Copyright © 2014 Philip Withnall -# -# Copying and distribution of this file, with or without modification, are -# permitted in any medium without royalty provided the copyright notice -# and this notice are preserved. - -AC_DEFUN([AX_CHECK_ENABLE_DEBUG],[ - AC_BEFORE([$0],[AC_PROG_CC])dnl - AC_BEFORE([$0],[AC_PROG_CXX])dnl - AC_BEFORE([$0],[AC_PROG_F77])dnl - AC_BEFORE([$0],[AC_PROG_FC])dnl - - AC_MSG_CHECKING(whether to enable debugging) - - m4_define(ax_enable_debug_default,[m4_tolower(m4_normalize(ifelse([$1],,[no],[$1])))]) - m4_define(ax_enable_debug_vars,[m4_normalize(ifelse([$2],,,[$2]))]) - m4_define(ax_disable_debug_vars,[m4_normalize(ifelse([$3],,[NDEBUG],[$3]))]) - - AC_ARG_ENABLE(debug, - [AS_HELP_STRING([--enable-debug]@<:@=ax_enable_debug_default@:>@,[compile with debugging; one of yes/info/profile/no])], - [],enable_debug=ax_enable_debug_default) - if test "x$enable_debug" = "xyes" || test "x$enable_debug" = "x"; then - AC_MSG_RESULT(yes) - CFLAGS="${CFLAGS} -g -O0" - CXXFLAGS="${CXXFLAGS} -g -O0" - FFLAGS="${FFLAGS} -g -O0" - FCFLAGS="${FCFLAGS} -g -O0" - OBJCFLAGS="${OBJCFLAGS} -g -O0" - - dnl Define various variables if debugging is enabled. - m4_map_args_w(ax_enable_debug_vars, [AC_DEFINE(], [,,[Define if debugging is enabled])]) - else - if test "x$enable_debug" = "xinfo"; then - AC_MSG_RESULT(info) - CFLAGS="${CFLAGS} -g" - CXXFLAGS="${CXXFLAGS} -g" - FFLAGS="${FFLAGS} -g" - FCFLAGS="${FCFLAGS} -g" - OBJCFLAGS="${OBJCFLAGS} -g" - elif test "x$enable_debug" = "xprofile"; then - AC_MSG_RESULT(profile) - CFLAGS="${CFLAGS} -g -pg" - CXXFLAGS="${CXXFLAGS} -g -pg" - FFLAGS="${FFLAGS} -g -pg" - FCFLAGS="${FCFLAGS} -g -pg" - OBJCFLAGS="${OBJCFLAGS} -g -pg" - LDFLAGS="${LDFLAGS} -pg" - else - AC_MSG_RESULT(no) - dnl Ensure AC_PROG_CC/CXX/F77/FC/OBJC will not enable debug flags - dnl by setting any unset environment flag variables - if test "x${CFLAGS+set}" != "xset"; then - CFLAGS="" - fi - if test "x${CXXFLAGS+set}" != "xset"; then - CXXFLAGS="" - fi - if test "x${FFLAGS+set}" != "xset"; then - FFLAGS="" - fi - if test "x${FCFLAGS+set}" != "xset"; then - FCFLAGS="" - fi - if test "x${OBJCFLAGS+set}" != "xset"; then - OBJCFLAGS="" - fi - fi - - dnl Define various variables if debugging is disabled. - dnl assert.h is a NOP if NDEBUG is defined, so define it by default. - m4_map_args_w(ax_disable_debug_vars, [AC_DEFINE(], [,,[Define if debugging is disabled])]) - fi - ax_enable_debug=$enable_debug -]) - -# gnome-common.m4 -# -# serial 3 -# - -AU_DEFUN([GNOME_DEBUG_CHECK], -[ - AX_CHECK_ENABLE_DEBUG([no],[GNOME_ENABLE_DEBUG]) -], -[[$0: This macro is deprecated. You should use AX_CHECK_ENABLE_DEBUG instead and -replace uses of GNOME_ENABLE_DEBUG with ENABLE_DEBUG. -See: http://www.gnu.org/software/autoconf-archive/ax_check_enable_debug.html#ax_check_enable_debug]]) - -dnl GNOME_MAINTAINER_MODE_DEFINES () -dnl define DISABLE_DEPRECATED -dnl -AU_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], -[ - AC_REQUIRE([AM_MAINTAINER_MODE]) - - DISABLE_DEPRECATED="" - if test $USE_MAINTAINER_MODE = yes; then - DOMAINS="GCONF BONOBO BONOBO_UI GNOME LIBGLADE GNOME_VFS WNCK LIBSOUP" - for DOMAIN in $DOMAINS; do - DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES" - done - fi - - AC_SUBST(DISABLE_DEPRECATED) -], -[[$0: This macro is deprecated. All of the modules it disables deprecations for -are obsolete. Remove it and all uses of DISABLE_DEPRECATED.]]) - -# gnome-compiler-flags.m4 -# -# serial 4 -# - -dnl GNOME_COMPILE_WARNINGS -dnl Turn on many useful compiler warnings and substitute the result into -dnl WARN_CFLAGS -dnl For now, only works on GCC -dnl Pass the default value of the --enable-compile-warnings configure option as -dnl the first argument to the macro, defaulting to 'yes'. -dnl Additional warning/error flags can be passed as an optional second argument. -dnl -dnl For example: GNOME_COMPILE_WARNINGS([maximum],[-Werror=some-flag -Wfoobar]) -AU_DEFUN([GNOME_COMPILE_WARNINGS],[ - dnl ****************************** - dnl More compiler warnings - dnl ****************************** - - AC_ARG_ENABLE(compile-warnings, - AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], - [Turn on compiler warnings]),, - [enable_compile_warnings="m4_default([$1],[yes])"]) - - if test "x$GCC" != xyes; then - enable_compile_warnings=no - fi - - warning_flags= - realsave_CFLAGS="$CFLAGS" - - dnl These are warning flags that aren't marked as fatal. Can be - dnl overridden on a per-project basis with -Wno-foo. - base_warn_flags=" \ - -Wall \ - -Wstrict-prototypes \ - -Wnested-externs \ - " - - dnl These compiler flags typically indicate very broken or suspicious - dnl code. Some of them such as implicit-function-declaration are - dnl just not default because gcc compiles a lot of legacy code. - dnl We choose to make this set into explicit errors. - base_error_flags=" \ - -Werror=missing-prototypes \ - -Werror=implicit-function-declaration \ - -Werror=pointer-arith \ - -Werror=init-self \ - -Werror=format-security \ - -Werror=format=2 \ - -Werror=missing-include-dirs \ - -Werror=return-type \ - " - - dnl Additional warning or error flags provided by the module author to - dnl allow stricter standards to be imposed on a per-module basis. - dnl The author can pass -W or -Werror flags here as they see fit. - additional_flags="m4_default([$2],[])" + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: - case "$enable_compile_warnings" in - no) - warning_flags="-w" - ;; - minimum) - warning_flags="-Wall" - ;; - yes|maximum|error) - warning_flags="$base_warn_flags $base_error_flags $additional_flags" - ;; - *) - AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) - ;; - esac +$$1_PKG_ERRORS - if test "$enable_compile_warnings" = "error" ; then - warning_flags="$warning_flags -Werror" - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - dnl Check whether GCC supports the warning options - for option in $warning_flags; do - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $option" - AC_MSG_CHECKING([whether gcc understands $option]) - AC_TRY_COMPILE([], [], - has_option=yes, - has_option=no,) - CFLAGS="$save_CFLAGS" - AC_MSG_RESULT([$has_option]) - if test $has_option = yes; then - tested_warning_flags="$tested_warning_flags $option" - fi - unset has_option - unset save_CFLAGS - done - unset option - CFLAGS="$realsave_CFLAGS" - AC_MSG_CHECKING(what warning flags to pass to the C compiler) - AC_MSG_RESULT($tested_warning_flags) +_PKG_TEXT])[]dnl + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. - AC_ARG_ENABLE(iso-c, - AS_HELP_STRING([--enable-iso-c], - [Try to warn if code is not ISO C ]),, - [enable_iso_c=no]) +_PKG_TEXT - AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) - complCFLAGS= - if test "x$enable_iso_c" != "xno"; then - if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) complCFLAGS="$complCFLAGS -ansi" ;; - esac - case " $CFLAGS " in - *[\ \ ]-pedantic[\ \ ]*) ;; - *) complCFLAGS="$complCFLAGS -pedantic" ;; - esac - fi - fi - AC_MSG_RESULT($complCFLAGS) +To get pkg-config, see .])[]dnl + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])dnl PKG_CHECK_MODULES - WARN_CFLAGS="$tested_warning_flags $complCFLAGS" - AC_SUBST(WARN_CFLAGS) -], -[[$0: This macro is deprecated. You should use AX_COMPILER_FLAGS instead and -eliminate use of --enable-iso-c. -See: http://www.gnu.org/software/autoconf-archive/ax_compiler_flags.html#ax_compiler_flags]]) -dnl For C++, do basically the same thing. +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC -AU_DEFUN([GNOME_CXX_WARNINGS],[ - AC_ARG_ENABLE(cxx-warnings, - AS_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] - [Turn on compiler warnings.]),, - [enable_cxx_warnings="m4_default([$1],[minimum])"]) - AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) - warnCXXFLAGS= - if test "x$GXX" != xyes; then - enable_cxx_warnings=no - fi - if test "x$enable_cxx_warnings" != "xno"; then - if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) warnCXXFLAGS="-Wall -Wno-unused" ;; - esac +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. +AC_DEFUN([PKG_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([pkgconfigdir], + [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, + [with_pkgconfigdir=]pkg_default) +AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +])dnl PKG_INSTALLDIR - ## -W is not all that useful. And it cannot be controlled - ## with individual -Wno-xxx flags, unlike -Wall - if test "x$enable_cxx_warnings" = "xyes"; then - warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" - fi - fi - fi - AC_MSG_RESULT($warnCXXFLAGS) - AC_ARG_ENABLE(iso-cxx, - AS_HELP_STRING([--enable-iso-cxx], - [Try to warn if code is not ISO C++ ]),, - [enable_iso_cxx=no]) +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. +AC_DEFUN([PKG_NOARCH_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([noarch-pkgconfigdir], + [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, + [with_noarch_pkgconfigdir=]pkg_default) +AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +])dnl PKG_NOARCH_INSTALLDIR - AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) - complCXXFLAGS= - if test "x$enable_iso_cxx" != "xno"; then - if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; - esac - case " $CXXFLAGS " in - *[\ \ ]-pedantic[\ \ ]*) ;; - *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; - esac - fi - fi - AC_MSG_RESULT($complCXXFLAGS) +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. +AC_DEFUN([PKG_CHECK_VAR], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl - WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" - AC_SUBST(WARN_CXXFLAGS) -], -[[$0: This macro is deprecated. You should use AX_COMPILER_FLAGS instead and -eliminate use of --enable-iso-cxx. -See: http://www.gnu.org/software/autoconf-archive/ax_compiler_flags.html#ax_compiler_flags]]) +_PKG_CONFIG([$1], [variable="][$3]["], [$2]) +AS_VAR_COPY([$1], [pkg_cv_][$1]) + +AS_VAR_IF([$1], [""], [$5], [$4])dnl +])dnl PKG_CHECK_VAR # Copyright (C) 2002-2014 Free Software Foundation, Inc. # @@ -1895,6 +1713,131 @@ AC_SUBST([am__untar]) ]) # _AM_PROG_TAR +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_check_enable_debug.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_CHECK_ENABLE_DEBUG([enable by default=yes/info/profile/no], [ENABLE DEBUG VARIABLES ...], [DISABLE DEBUG VARIABLES NDEBUG ...], [IS-RELEASE]) +# +# DESCRIPTION +# +# Check for the presence of an --enable-debug option to configure, with +# the specified default value used when the option is not present. Return +# the value in the variable $ax_enable_debug. +# +# Specifying 'yes' adds '-g -O0' to the compilation flags for all +# languages. Specifying 'info' adds '-g' to the compilation flags. +# Specifying 'profile' adds '-g -pg' to the compilation flags and '-pg' to +# the linking flags. Otherwise, nothing is added. +# +# Define the variables listed in the second argument if debug is enabled, +# defaulting to no variables. Defines the variables listed in the third +# argument if debug is disabled, defaulting to NDEBUG. All lists of +# variables should be space-separated. +# +# If debug is not enabled, ensure AC_PROG_* will not add debugging flags. +# Should be invoked prior to any AC_PROG_* compiler checks. +# +# IS-RELEASE can be used to change the default to 'no' when making a +# release. Set IS-RELEASE to 'yes' or 'no' as appropriate. By default, it +# uses the value of $ax_is_release, so if you are using the AX_IS_RELEASE +# macro, there is no need to pass this parameter. +# +# AX_IS_RELEASE([git-directory]) +# AX_CHECK_ENABLE_DEBUG() +# +# LICENSE +# +# Copyright (c) 2011 Rhys Ulerich +# Copyright (c) 2014, 2015 Philip Withnall +# +# Copying and distribution of this file, with or without modification, are +# permitted in any medium without royalty provided the copyright notice +# and this notice are preserved. + +#serial 5 + +AC_DEFUN([AX_CHECK_ENABLE_DEBUG],[ + AC_BEFORE([$0],[AC_PROG_CC])dnl + AC_BEFORE([$0],[AC_PROG_CXX])dnl + AC_BEFORE([$0],[AC_PROG_F77])dnl + AC_BEFORE([$0],[AC_PROG_FC])dnl + + AC_MSG_CHECKING(whether to enable debugging) + + ax_enable_debug_default=m4_tolower(m4_normalize(ifelse([$1],,[no],[$1]))) + ax_enable_debug_is_release=m4_tolower(m4_normalize(ifelse([$4],, + [$ax_is_release], + [$4]))) + + # If this is a release, override the default. + AS_IF([test "$ax_enable_debug_is_release" = "yes"], + [ax_enable_debug_default="no"]) + + m4_define(ax_enable_debug_vars,[m4_normalize(ifelse([$2],,,[$2]))]) + m4_define(ax_disable_debug_vars,[m4_normalize(ifelse([$3],,[NDEBUG],[$3]))]) + + AC_ARG_ENABLE(debug, + [AS_HELP_STRING([--enable-debug=]@<:@yes/info/profile/no@:>@,[compile with debugging])], + [],enable_debug=$ax_enable_debug_default) + + # empty mean debug yes + AS_IF([test "x$enable_debug" = "x"], + [enable_debug="yes"]) + + # case of debug + AS_CASE([$enable_debug], + [yes],[ + AC_MSG_RESULT(yes) + CFLAGS="${CFLAGS} -g -O0" + CXXFLAGS="${CXXFLAGS} -g -O0" + FFLAGS="${FFLAGS} -g -O0" + FCFLAGS="${FCFLAGS} -g -O0" + OBJCFLAGS="${OBJCFLAGS} -g -O0" + ], + [info],[ + AC_MSG_RESULT(info) + CFLAGS="${CFLAGS} -g" + CXXFLAGS="${CXXFLAGS} -g" + FFLAGS="${FFLAGS} -g" + FCFLAGS="${FCFLAGS} -g" + OBJCFLAGS="${OBJCFLAGS} -g" + ], + [profile],[ + AC_MSG_RESULT(profile) + CFLAGS="${CFLAGS} -g -pg" + CXXFLAGS="${CXXFLAGS} -g -pg" + FFLAGS="${FFLAGS} -g -pg" + FCFLAGS="${FCFLAGS} -g -pg" + OBJCFLAGS="${OBJCFLAGS} -g -pg" + LDFLAGS="${LDFLAGS} -pg" + ], + [ + AC_MSG_RESULT(no) + dnl Ensure AC_PROG_CC/CXX/F77/FC/OBJC will not enable debug flags + dnl by setting any unset environment flag variables + AS_IF([test "x${CFLAGS+set}" != "xset"], + [CFLAGS=""]) + AS_IF([test "x${CXXFLAGS+set}" != "xset"], + [CXXFLAGS=""]) + AS_IF([test "x${FFLAGS+set}" != "xset"], + [FFLAGS=""]) + AS_IF([test "x${FCFLAGS+set}" != "xset"], + [FCFLAGS=""]) + AS_IF([test "x${OBJCFLAGS+set}" != "xset"], + [OBJCFLAGS=""]) + ]) + + dnl Define various variables if debugging is disabled. + dnl assert.h is a NOP if NDEBUG is defined, so define it by default. + AS_IF([test "x$enable_debug" = "xyes"], + [m4_map_args_w(ax_enable_debug_vars, [AC_DEFINE(], [,,[Define if debugging is enabled])])], + [m4_map_args_w(ax_disable_debug_vars, [AC_DEFINE(], [,,[Define if debugging is disabled])])]) + ax_enable_debug=$enable_debug +]) + m4_include([libgd/libgd.m4]) m4_include([m4/as-ac-expand.m4]) m4_include([m4/intltool.m4]) diff -Nru gnome-control-center-3.24.1/ar-lib gnome-control-center-3.24.2/ar-lib --- gnome-control-center-3.24.1/ar-lib 2014-09-05 08:09:59.000000000 +0000 +++ gnome-control-center-3.24.2/ar-lib 1970-01-01 00:00:00.000000000 +0000 @@ -1,270 +0,0 @@ -#! /bin/sh -# Wrapper for Microsoft lib.exe - -me=ar-lib -scriptversion=2012-03-01.08; # UTC - -# Copyright (C) 2010-2013 Free Software Foundation, Inc. -# Written by Peter Rosin . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - - -# func_error message -func_error () -{ - echo "$me: $1" 1>&2 - exit 1 -} - -file_conv= - -# func_file_conv build_file -# Convert a $build file to $host form and store it in $file -# Currently only supports Windows hosts. -func_file_conv () -{ - file=$1 - case $file in - / | /[!/]*) # absolute file, and not a UNC file - if test -z "$file_conv"; then - # lazily determine how to convert abs files - case `uname -s` in - MINGW*) - file_conv=mingw - ;; - CYGWIN*) - file_conv=cygwin - ;; - *) - file_conv=wine - ;; - esac - fi - case $file_conv in - mingw) - file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` - ;; - cygwin) - file=`cygpath -m "$file" || echo "$file"` - ;; - wine) - file=`winepath -w "$file" || echo "$file"` - ;; - esac - ;; - esac -} - -# func_at_file at_file operation archive -# Iterate over all members in AT_FILE performing OPERATION on ARCHIVE -# for each of them. -# When interpreting the content of the @FILE, do NOT use func_file_conv, -# since the user would need to supply preconverted file names to -# binutils ar, at least for MinGW. -func_at_file () -{ - operation=$2 - archive=$3 - at_file_contents=`cat "$1"` - eval set x "$at_file_contents" - shift - - for member - do - $AR -NOLOGO $operation:"$member" "$archive" || exit $? - done -} - -case $1 in - '') - func_error "no command. Try '$0 --help' for more information." - ;; - -h | --h*) - cat < gnome-3-24) +commit e44054466a35e637e0b8cb88cf676f94a9f40dc8 +Author: Rui Matos +Date: Wed May 10 10:39:45 2017 +0200 + + 3.24.2 + + NEWS | 13 +++++++++++++ + configure.ac | 2 +- + 2 files changed, 14 insertions(+), 1 deletion(-) + +commit 7ca147791f0573fc989a4e980bd16cfbd8246595 +Author: Mohammed Sadiq +Date: Fri May 5 17:40:33 2017 +0530 + + hostname-helper: don't read past '\0' + + g_utf8_find_next_char() doesn't do checks whether the char + is '\0' or not. We have to take care of that ourself. + + This commit fixes heap-buffer-overflow found by test-hostname + + ERROR: AddressSanitizer: heap-buffer-overflow on address + READ of size 1 at 0x60200000cd76 thread T0 + #0 0x7f8b26920d08 in g_utf8_find_next_char glib/glib/gutf8.c:179 + #1 0x55c2b8eacaee in pretty_hostname_to_ssid gnome-control-center/shell/hostname-helper.c:199 + + https://bugzilla.gnome.org/show_bug.cgi?id=782216 + + shell/hostname-helper.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit 388b1164b2dad16ffa568be00397c69d51211311 +Author: Mohammed Sadiq +Date: Tue May 2 10:53:56 2017 +0530 + + sharing: Don't leak path + + g_file_get_path() allocates new memory for path. + So using g_strdup() later would leak the previous allocation. + + https://bugzilla.gnome.org/show_bug.cgi?id=782045 + + panels/sharing/cc-sharing-panel.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 70f8afedb5c648aa1970a46cc55de0b33391f5b8 +Author: Mohammed Sadiq +Date: Tue May 2 11:35:23 2017 +0530 + + region: Fix memory leak + + The returned result of g_variant_get_strv() has to be freed + when no-longer needed + + https://bugzilla.gnome.org/show_bug.cgi?id=782047 + + panels/region/cc-region-panel.c | 1 + + 1 file changed, 1 insertion(+) + +commit f60f925210640529beb046c4f9b064732db1faa1 +Author: Mohammed Sadiq +Date: Tue May 2 12:00:52 2017 +0530 + + search: Fix memory leak + + g_variant_get_strv() returns newly allocated memory. + This should be freed when no longer required. + + https://bugzilla.gnome.org/show_bug.cgi?id=782048 + + panels/search/cc-search-panel.c | 1 + + 1 file changed, 1 insertion(+) + +commit d9626060c5f7f607c47303108a71f90033825bec +Author: Mohammed Sadiq +Date: Tue Feb 21 10:47:15 2017 +0530 + + keyboard: Discard the added shortcut on Escape + + If the user press Escape key after the user have set some shortcut, + don't save the newly set shortcut, and close the dialog. + + https://bugzilla.gnome.org/show_bug.cgi?id=778748 + + panels/keyboard/shortcut-editor.ui | 1 + + 1 file changed, 1 insertion(+) + +commit 9a1cea3bd0a7231b02266f306181eccdaa6004d0 +Author: Fabio Tomat +Date: Fri Apr 14 19:24:17 2017 +0000 + + Update Friulian translation + + po/fur.po | 26 +++++++++++++------------- + 1 file changed, 13 insertions(+), 13 deletions(-) + +commit bdba78c86d4896e3a9584ccd8854d3c9551cd970 +Author: Jonathan Kang +Date: Thu Oct 13 10:05:03 2016 +0800 + + network: Fix mobile broadband switch state + + The switch was only reflecting the value of the WWAN killswitch instead + of both the WWAN killswitch and the state of the connection itself. + + https://bugzilla.gnome.org/show_bug.cgi?id=690361 + + panels/network/net-device-mobile.c | 17 ++++++++++++++++- + 1 file changed, 16 insertions(+), 1 deletion(-) + +commit 379757e15516609d787a27df5ba1a359ed80f45d Author: Bastien Nocera Date: Wed Apr 12 11:31:29 2017 +0200 @@ -19,7 +129,7 @@ panels/sound/gvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit f1e8aebf219b470e163aa1b4a48dd42c97fcb012 (origin/gnome-3-24) +commit f1e8aebf219b470e163aa1b4a48dd42c97fcb012 Author: Emmanuele Bassi Date: Fri Apr 7 12:46:09 2017 +0100 @@ -168,7 +278,7 @@ po/fr.po | 281 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 129 insertions(+), 152 deletions(-) -commit b0538ef84a5cca7dad7928707824ecbf1fb31c0f (tag: GNOME_CONTROL_CENTER_3_24_0) +commit b0538ef84a5cca7dad7928707824ecbf1fb31c0f Author: Bastien Nocera Date: Mon Mar 20 13:00:22 2017 +0100 @@ -243,7 +353,7 @@ NEWS | 3 --- 1 file changed, 3 deletions(-) -commit 5b3c6143ce95044fb4f5fcbf872e944db6b21405 (tag: GNOME_CONTROL_CENTER_3_23_92) +commit 5b3c6143ce95044fb4f5fcbf872e944db6b21405 Author: Bastien Nocera Date: Wed Mar 15 13:03:09 2017 +0100 @@ -647,7 +757,7 @@ po/fi.po | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) -commit 1f58b84c9dd454e415e5e542b4f12ccd78980b77 (tag: GNOME_CONTROL_CENTER_3_23_91) +commit 1f58b84c9dd454e415e5e542b4f12ccd78980b77 Author: Bastien Nocera Date: Tue Feb 28 15:58:14 2017 +0100 @@ -1447,7 +1557,7 @@ po/es.po | 81 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 42 insertions(+), 39 deletions(-) -commit 0fd233bd86e0aad06320d5dc397d7945d4b15cf6 (tag: GNOME_CONTROL_CENTER_3_23_90) +commit 0fd233bd86e0aad06320d5dc397d7945d4b15cf6 Author: Bastien Nocera Date: Tue Feb 14 19:39:57 2017 +0100 @@ -5139,7 +5249,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit fd7cfe426fe02401226d75b90f6056afe15f718b (tag: GNOME_CONTROL_CENTER_3_22_0) +commit fd7cfe426fe02401226d75b90f6056afe15f718b Author: Bastien Nocera Date: Tue Sep 20 10:54:42 2016 +0200 @@ -5405,7 +5515,7 @@ po/fa.po | 2136 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 1198 insertions(+), 938 deletions(-) -commit 894784547b13f4cafd60361eb8c5878c2c7ebef0 (tag: GNOME_CONTROL_CENTER_3_21_92) +commit 894784547b13f4cafd60361eb8c5878c2c7ebef0 Author: Bastien Nocera Date: Tue Sep 13 12:23:39 2016 +0200 @@ -6467,7 +6577,7 @@ po/sl.po | 2699 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1593 insertions(+), 1106 deletions(-) -commit 70b57fa125c9c124c7201d10d08a1e97cd63571a (tag: GNOME_CONTROL_CENTER_3_21_90) +commit 70b57fa125c9c124c7201d10d08a1e97cd63571a Author: Rui Matos Date: Thu Aug 25 19:48:53 2016 +0200 @@ -10700,7 +10810,7 @@ po/el.po | 84 ++++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 50 insertions(+), 34 deletions(-) -commit 0660169a7d8e2b70e0baced0c35e52857a357076 (tag: GNOME_CONTROL_CENTER_3_20_0) +commit 0660169a7d8e2b70e0baced0c35e52857a357076 Author: Bastien Nocera Date: Mon Mar 21 12:50:12 2016 +0100 @@ -10935,7 +11045,7 @@ po/pt_BR.po | 76 ++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 31 deletions(-) -commit bffe8224e8111163f21edafbb86463d8270036a6 (tag: GNOME_CONTROL_CENTER_3_19_92) +commit bffe8224e8111163f21edafbb86463d8270036a6 Author: Bastien Nocera Date: Thu Mar 17 15:19:06 2016 +0100 @@ -11606,7 +11716,7 @@ po/uk.po | 1463 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 795 insertions(+), 668 deletions(-) -commit 49aff243c26e2be9d940b3c8355be8a84f7594e2 (tag: GNOME_CONTROL_CENTER_3_19_91) +commit 49aff243c26e2be9d940b3c8355be8a84f7594e2 Author: Bastien Nocera Date: Fri Mar 4 13:33:10 2016 +0100 @@ -11988,7 +12098,7 @@ panels/printers/cc-printers-panel.c | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) -commit 8bdee896c41c0f37f3e43c8a47215d561036d1ce (tag: GNOME_CONTROL_CENTER_3_19_90) +commit 8bdee896c41c0f37f3e43c8a47215d561036d1ce Author: Rui Matos Date: Tue Feb 16 20:02:06 2016 +0100 @@ -12375,7 +12485,7 @@ po/de.po | 1638 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 1054 insertions(+), 584 deletions(-) -commit e56fa790992619fab88606dc5f063f354a23c429 (tag: GNOME_CONTROL_CENTER_3_19_5) +commit e56fa790992619fab88606dc5f063f354a23c429 Author: Rui Matos Date: Mon Jan 18 17:53:30 2016 +0100 @@ -12857,7 +12967,7 @@ po/es.po | 86 ++++++++++++++++++++++++++++------------------------------------ 1 file changed, 37 insertions(+), 49 deletions(-) -commit 09c86e277cba1e7388feef7a6b25ffbc2a41515d (tag: GNOME_CONTROL_CENTER_3_19_4) +commit 09c86e277cba1e7388feef7a6b25ffbc2a41515d Author: Bastien Nocera Date: Thu Dec 17 13:36:15 2015 +0100 @@ -12894,7 +13004,7 @@ panels/background/cc-background-grilo-miner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 5096b6ff4b5306e133fce01fa5f9fdc271efdf0d (tag: GNOME_CONTROL_CENTER_3_19_3) +commit 5096b6ff4b5306e133fce01fa5f9fdc271efdf0d Author: Bastien Nocera Date: Tue Dec 15 16:34:21 2015 +0100 @@ -14076,7 +14186,7 @@ po/sr@latin.po | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) -commit 65b50407120e686b5edea12c43f3e736afc9d34a (tag: GNOME_CONTROL_CENTER_3_18_1) +commit 65b50407120e686b5edea12c43f3e736afc9d34a Author: Bastien Nocera Date: Mon Oct 12 13:50:15 2015 +0200 @@ -14239,7 +14349,7 @@ po/sr.po | 1589 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 757 insertions(+), 832 deletions(-) -commit 49da7d8089298ba9e15d8e025db606278802d5ac (tag: GNOME_CONTROL_CENTER_3_18_0) +commit 49da7d8089298ba9e15d8e025db606278802d5ac Author: Bastien Nocera Date: Mon Sep 21 17:00:32 2015 +0200 @@ -14312,7 +14422,7 @@ po/id.po | 626 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 360 insertions(+), 266 deletions(-) -commit aaedfe956f62b521400912477378398d338fde2c (tag: GNOME_CONTROL_CENTER_3_17_92) +commit aaedfe956f62b521400912477378398d338fde2c Author: Bastien Nocera Date: Tue Sep 15 14:25:47 2015 +0200 @@ -14656,7 +14766,7 @@ po/hu.po | 217 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 128 insertions(+), 89 deletions(-) -commit c15919a6097634ce51fc99183174457d8da5549a (tag: GNOME_CONTROL_CENTER_3_17_90) +commit c15919a6097634ce51fc99183174457d8da5549a Author: Bastien Nocera Date: Mon Aug 17 20:39:16 2015 +0200 @@ -15239,7 +15349,7 @@ po/fur.po | 163 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 91 insertions(+), 72 deletions(-) -commit 33b5f0a9c0d5c604dbd91ba96a797ae5a8104ef2 (tag: GNOME_CONTROL_CENTER_3_17_3) +commit 33b5f0a9c0d5c604dbd91ba96a797ae5a8104ef2 Author: Bastien Nocera Date: Tue Jul 21 16:16:51 2015 +0200 @@ -16360,7 +16470,7 @@ panels/power/cc-power-panel.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) -commit ed1c8d668cd3cfc9ca9d3000fd6cf27640d7ed8f (tag: GNOME_CONTROL_CENTER_3_17_2) +commit ed1c8d668cd3cfc9ca9d3000fd6cf27640d7ed8f Author: Bastien Nocera Date: Thu Jun 4 17:45:01 2015 +0200 @@ -16733,7 +16843,7 @@ po/ro.po | 5000 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 2646 insertions(+), 2354 deletions(-) -commit 66e4e8d434ad5cf850a31140ad3825e174640006 (tag: GNOME_CONTROL_CENTER_3_16_2) +commit 66e4e8d434ad5cf850a31140ad3825e174640006 Author: Rui Matos Date: Tue May 12 16:41:43 2015 +0200 @@ -16997,7 +17107,7 @@ panels/printers/pp-ppd-option-widget.c | 3 +++ 1 file changed, 3 insertions(+) -commit 478cbd32b99ea9cad34832d1df57b14af9ada25e (tag: GNOME_CONTROL_CENTER_3_16_1) +commit 478cbd32b99ea9cad34832d1df57b14af9ada25e Author: Bastien Nocera Date: Wed Apr 15 16:54:58 2015 +0200 @@ -17621,7 +17731,7 @@ po/ar.po | 2029 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 1101 insertions(+), 928 deletions(-) -commit 5d384e274de8c10155fb555998d36d5576fd4873 (tag: GNOME_CONTROL_CENTER_3_16_0) +commit 5d384e274de8c10155fb555998d36d5576fd4873 Author: Bastien Nocera Date: Mon Mar 23 11:57:32 2015 +0100 @@ -17904,7 +18014,7 @@ po/an.po | 303 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 165 insertions(+), 138 deletions(-) -commit c2ea7c0cd2044d64bd84ae1c3911ef0ccb23092a (tag: GNOME_CONTROL_CENTER_3_15_92) +commit c2ea7c0cd2044d64bd84ae1c3911ef0ccb23092a Author: Rui Matos Date: Tue Mar 17 18:56:33 2015 +0100 @@ -18430,7 +18540,7 @@ panels/sharing/cc-sharing-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit c43042955948485572a40fd556f5b21554fc8ba4 (tag: GNOME_CONTROL_CENTER_3_15_91) +commit c43042955948485572a40fd556f5b21554fc8ba4 Author: Bastien Nocera Date: Tue Mar 3 19:13:52 2015 +0100 @@ -18843,7 +18953,7 @@ po/it.po | 2073 +++++++++++++++++++++++++------------------------------------- 1 file changed, 845 insertions(+), 1228 deletions(-) -commit 04777127e2ad71250ac6ce2d18d50cddbbbfa19d (tag: GNOME_CONTROL_CENTER_3_15_90) +commit 04777127e2ad71250ac6ce2d18d50cddbbbfa19d Author: Bastien Nocera Date: Tue Feb 17 12:26:01 2015 +0100 @@ -19470,7 +19580,7 @@ panels/privacy/privacy.ui | 103 ++++++++++++++++++++++ 2 files changed, 282 insertions(+), 1 deletion(-) -commit 1629995adf47369d714946590c20a47607eb6172 (tag: GNOME_CONTROL_CENTER_3_15_4) +commit 1629995adf47369d714946590c20a47607eb6172 Author: Rui Matos Date: Wed Jan 21 15:42:10 2015 +0100 @@ -21495,7 +21605,7 @@ panels/user-accounts/um-photo-dialog.c | 12 ++-- 4 files changed, 64 insertions(+), 64 deletions(-) -commit ea0297863baf2acce7936b4ad5f406d69a8bfec4 (tag: GNOME_CONTROL_CENTER_3_14_1) +commit ea0297863baf2acce7936b4ad5f406d69a8bfec4 Author: Rui Matos Date: Tue Oct 14 16:19:48 2014 +0200 @@ -21809,7 +21919,7 @@ panels/keyboard/gnome-keyboard-panel.ui | 1 + 1 file changed, 1 insertion(+) -commit 11d0907f962c29219dff62c53b6fd103e76bcff9 (tag: GNOME_CONTROL_CENTER_3_14_0) +commit 11d0907f962c29219dff62c53b6fd103e76bcff9 Author: Rui Matos Date: Mon Sep 22 18:34:09 2014 +0200 @@ -22003,7 +22113,7 @@ po/tr.po | 858 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 465 insertions(+), 393 deletions(-) -commit 0c6ed9af60a2827624bdb29e0e7f6fa51142e266 (tag: GNOME_CONTROL_CENTER_3_13_92) +commit 0c6ed9af60a2827624bdb29e0e7f6fa51142e266 Author: Rui Matos Date: Mon Sep 15 22:12:44 2014 +0200 @@ -22569,7 +22679,7 @@ po/pl.po | 1269 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 673 insertions(+), 596 deletions(-) -commit c59590ec66bc56da30260d3153862c770361c535 (tag: GNOME_CONTROL_CENTER_3_13_91) +commit c59590ec66bc56da30260d3153862c770361c535 Author: Rui Matos Date: Tue Sep 2 21:24:37 2014 +0200 @@ -22827,7 +22937,7 @@ po/as.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) -commit 7be435e56610479ba3208e92980214774f32b363 (tag: GNOME_CONTROL_CENTER_3_13_90) +commit 7be435e56610479ba3208e92980214774f32b363 Author: Bastien Nocera Date: Tue Aug 19 19:56:21 2014 +0200 @@ -23934,7 +24044,7 @@ po/sv.po | 10335 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 5061 insertions(+), 5274 deletions(-) -commit 042d3302eeab4c98dcda9dea54bc73a309c48fe8 (tag: GNOME_CONTROL_CENTER_3_13_4) +commit 042d3302eeab4c98dcda9dea54bc73a309c48fe8 Author: Rui Matos Date: Wed Jul 23 15:48:16 2014 +0200 @@ -24604,7 +24714,7 @@ shell/list-box-helper.h | 5 ++++- 6 files changed, 47 insertions(+), 49 deletions(-) -commit ea624443885ee38f440fae16ea5e9ead426ec7e3 (tag: GNOME_CONTROL_CENTER_3_13_3) +commit ea624443885ee38f440fae16ea5e9ead426ec7e3 Author: Bastien Nocera Date: Wed Jun 25 17:10:04 2014 +0200 @@ -24974,7 +25084,7 @@ panels/background/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 4db5632b33212b509d36e59a1ea67f3ad2287153 (tag: GNOME_CONTROL_CENTER_3_13_2) +commit 4db5632b33212b509d36e59a1ea67f3ad2287153 Author: Bastien Nocera Date: Tue Jun 24 16:48:00 2014 +0200 @@ -26010,7 +26120,7 @@ panels/network/net-virtual-device.c | 7 ------- 1 file changed, 7 deletions(-) -commit 7e8c013e17cce1a19299a0f8a517b2d8f2cfc3f5 (tag: GNOME_CONTROL_CENTER_3_13_1) +commit 7e8c013e17cce1a19299a0f8a517b2d8f2cfc3f5 Author: Debarshi Ray Date: Mon Apr 28 17:49:07 2014 +0200 @@ -26425,7 +26535,7 @@ panels/color/cc-color-panel.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) -commit aaa2833901fa51f4a2a30f43faf00981c7268327 (tag: GNOME_CONTROL_CENTER_3_12_1) +commit aaa2833901fa51f4a2a30f43faf00981c7268327 Author: Rui Matos Date: Wed Apr 16 14:44:08 2014 +0200 @@ -26715,7 +26825,7 @@ po/sk.po | 2101 +++++++++++++++++++++++++++++--------------------------------- 1 file changed, 984 insertions(+), 1117 deletions(-) -commit 844c10c254144ba4d3ff97bdae8a6c856596c872 (tag: GNOME_CONTROL_CENTER_3_12_0) +commit 844c10c254144ba4d3ff97bdae8a6c856596c872 Author: Debarshi Ray Date: Mon Mar 24 14:47:45 2014 +0100 @@ -26838,7 +26948,7 @@ po/bn_IN.po | 9933 ++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 7167 insertions(+), 2766 deletions(-) -commit 3c0a164ef9ce8c65b9bc44abc8d1ac759d9c06b5 (tag: GNOME_CONTROL_CENTER_3_11_92) +commit 3c0a164ef9ce8c65b9bc44abc8d1ac759d9c06b5 Author: Bastien Nocera Date: Tue Mar 18 11:42:17 2014 +0100 @@ -27088,7 +27198,7 @@ po/hu.po | 2124 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 1083 insertions(+), 1041 deletions(-) -commit 6f8622abb7304526545c2b868a3dbcb5250b796d (tag: GNOME_CONTROL_CENTER_3_11_91) +commit 6f8622abb7304526545c2b868a3dbcb5250b796d Author: Debarshi Ray Date: Tue Mar 4 18:55:03 2014 +0100 @@ -27397,7 +27507,7 @@ po/nb.po | 262 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 131 insertions(+), 131 deletions(-) -commit cc61f581d84aca8d0a10678ea3aa1be6eba130e7 (tag: GNOME_CONTROL_CENTER_3_11_90) +commit cc61f581d84aca8d0a10678ea3aa1be6eba130e7 Author: Bastien Nocera Date: Tue Feb 18 17:54:27 2014 +0100 @@ -28184,7 +28294,7 @@ panels/privacy/privacy.ui | 132 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 159 insertions(+) -commit 788203a841e4a2820b7f431e816a2e86d347b8b2 (tag: GNOME_CONTROL_CENTER_3_11_5) +commit 788203a841e4a2820b7f431e816a2e86d347b8b2 Author: Rui Matos Date: Tue Feb 4 15:23:54 2014 +0100 @@ -29086,7 +29196,7 @@ po/ru.po | 473 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 218 insertions(+), 255 deletions(-) -commit fdff76391571b96dce17071048a8b01e3923893d (tag: GNOME_CONTROL_CENTER_3_11_3) +commit fdff76391571b96dce17071048a8b01e3923893d Author: Bastien Nocera Date: Tue Dec 17 12:18:30 2013 +0100 @@ -29438,7 +29548,7 @@ po/ta.po | 3445 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 1995 insertions(+), 1450 deletions(-) -commit fd25825839eff647408c044b75a3b402d7bb85d5 (tag: 3.11.2) +commit fd25825839eff647408c044b75a3b402d7bb85d5 Author: Matthias Clasen Date: Tue Nov 19 20:00:56 2013 -0500 @@ -30038,7 +30148,7 @@ po/es.po | 946 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 455 insertions(+), 491 deletions(-) -commit fd09f9260db109917558de3888f11c72d33df9ac (tag: 3.11.1) +commit fd09f9260db109917558de3888f11c72d33df9ac Author: Bastien Nocera Date: Wed Oct 30 12:08:31 2013 +0100 @@ -30330,7 +30440,7 @@ panels/region/cc-region-panel.c | 81 +++++++++++++++++++++++++++++------------ 1 file changed, 58 insertions(+), 23 deletions(-) -commit 5bcbfb0f03ba1d276ad469cca983e70b0a325f56 (tag: GNOME_CONTROL_CENTER_3_10_1) +commit 5bcbfb0f03ba1d276ad469cca983e70b0a325f56 Author: Rui Matos Date: Tue Oct 15 23:06:25 2013 +0200 @@ -31792,7 +31902,7 @@ po/de.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) -commit 71427e3959f825b0a793f2415eb685950245566a (tag: GNOME_CONTROL_CENTER_3_10_0) +commit 71427e3959f825b0a793f2415eb685950245566a Author: Bastien Nocera Date: Tue Sep 24 14:56:13 2013 +0200 @@ -32208,7 +32318,7 @@ po/pa.po | 343 +++++++++++++++++++++------------------------------------------ 1 file changed, 113 insertions(+), 230 deletions(-) -commit 1b09681f1d53b2f232bee6442cfde939bbdd1e08 (tag: GNOME_CONTROL_CENTER_3_9_92) +commit 1b09681f1d53b2f232bee6442cfde939bbdd1e08 Author: Rui Matos Date: Tue Sep 17 22:51:37 2013 +0200 @@ -32950,7 +33060,7 @@ po/en_GB.po | 3551 ++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 2068 insertions(+), 1483 deletions(-) -commit 363093acbfc662c999cf67d6abfee13446a1ce6b (tag: GNOME_CONTROL_CENTER_3_9_91) +commit 363093acbfc662c999cf67d6abfee13446a1ce6b Author: Rui Matos Date: Wed Sep 4 02:01:34 2013 +0200 @@ -33708,7 +33818,7 @@ panels/network/connection-editor/ip6-page.ui | 6 ------ 1 file changed, 6 deletions(-) -commit 930ce266ceadbd084365b5c826e1e63486120ef7 (tag: GNOME_CONTROL_CENTER_3_9_90_1) +commit 930ce266ceadbd084365b5c826e1e63486120ef7 Author: Debarshi Ray Date: Thu Aug 22 18:59:36 2013 +0200 @@ -33876,7 +33986,7 @@ po/gl.po | 1057 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 654 insertions(+), 403 deletions(-) -commit 8faa40c220a7d75c9377da605d95c8ceadfa2730 (tag: GNOME_CONTROL_CENTER_3_9_90) +commit 8faa40c220a7d75c9377da605d95c8ceadfa2730 Author: Rui Matos Date: Tue Aug 20 23:04:42 2013 +0100 @@ -35367,7 +35477,7 @@ panels/network/cc-network-panel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -commit 287903eed04a3bc6628b8f2c970a848cc106fe10 (tag: GNOME_CONTROL_CENTER_3_9_5) +commit 287903eed04a3bc6628b8f2c970a848cc106fe10 Author: Bastien Nocera Date: Tue Jul 30 13:47:19 2013 +0200 @@ -36627,7 +36737,7 @@ shell/cc-window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -commit d5a7c75134c4ba9530a1cae37e20f1c06c98fc5b (tag: GNOME_CONTROL_CENTER_3_9_3) +commit d5a7c75134c4ba9530a1cae37e20f1c06c98fc5b Author: Bastien Nocera Date: Tue Jun 18 21:56:53 2013 +0200 @@ -37429,7 +37539,7 @@ panels/bluetooth/cc-bluetooth-panel.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) -commit 3ca9c225c4e00d50e908b4259074ccfccca86edc (tag: GNOME_CONTROL_CENTER_3_9_2_1) +commit 3ca9c225c4e00d50e908b4259074ccfccca86edc Author: Bastien Nocera Date: Mon Jun 3 15:12:28 2013 +0200 @@ -37507,7 +37617,7 @@ po/cs.po | 359 +++++++++++++++++++++++++++------------------------------------ 1 file changed, 153 insertions(+), 206 deletions(-) -commit 3f1add083123fce1901b0d82e9d681ba9b153179 (tag: GNOME_CONTROL_CENTER_3_9_2) +commit 3f1add083123fce1901b0d82e9d681ba9b153179 Author: Bastien Nocera Date: Tue May 28 20:36:18 2013 +0200 @@ -43869,7 +43979,7 @@ po/ml.po | 4810 ++++++++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 3432 insertions(+), 1378 deletions(-) -commit 810a5962880ffc9e61f86bb207696904376f5277 (tag: 3.7.5.1) +commit 810a5962880ffc9e61f86bb207696904376f5277 Author: Matthias Clasen Date: Wed Feb 6 23:31:17 2013 -0500 @@ -44011,7 +44121,7 @@ panels/color/color.ui | 1 + 2 files changed, 23 insertions(+), 2 deletions(-) -commit 6fed2986eb86d4c5a87155be5407bea9d9df1503 (tag: GNOME_CONTROL_CENTER_3_7_5) +commit 6fed2986eb86d4c5a87155be5407bea9d9df1503 Author: Richard Hughes Date: Tue Feb 5 15:19:13 2013 +0000 @@ -46006,7 +46116,7 @@ panels/info/cc-info-panel.c | 87 +++++++++++++++++++++++++-------------------- 2 files changed, 49 insertions(+), 40 deletions(-) -commit 7e94eca2fbe460435af2d49380846e41b95fdf9d (tag: GNOME_CONTROL_CENTER_3_7_4) +commit 7e94eca2fbe460435af2d49380846e41b95fdf9d Author: Bastien Nocera Date: Tue Jan 15 15:40:53 2013 +0100 @@ -47509,7 +47619,7 @@ po/lt.po | 1044 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 570 insertions(+), 474 deletions(-) -commit b2f193a920b6dcbb67e5b0daeb367cd394c6d3a7 (tag: GNOME_CONTROL_CENTER_3_7_3) +commit b2f193a920b6dcbb67e5b0daeb367cd394c6d3a7 Author: Bastien Nocera Date: Thu Dec 20 18:11:37 2012 +0100 @@ -50343,7 +50453,7 @@ po/sl.po | 178 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 91 insertions(+), 87 deletions(-) -commit 5b3c1bee4b46fc9646f3c25e83faba9c66257c78 (tag: GNOME_CONTROL_CENTER_3_7_1) +commit 5b3c1bee4b46fc9646f3c25e83faba9c66257c78 Author: Bastien Nocera Date: Mon Oct 22 16:00:04 2012 +0200 @@ -51055,7 +51165,7 @@ po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 6d8ac68f7ee0fe69f70056841799a12dd70ac6eb (tag: GNOME_CONTROL_CENTER_3_6_1) +commit 6d8ac68f7ee0fe69f70056841799a12dd70ac6eb Author: Bastien Nocera Date: Mon Oct 8 18:55:14 2012 +0200 @@ -51667,7 +51777,7 @@ panels/online-accounts/cc-online-accounts-panel.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) -commit 8f3c5793bba8c152549535b5d2716766aeb1b91f (tag: GNOME_CONTROL_CENTER_3_6_0) +commit 8f3c5793bba8c152549535b5d2716766aeb1b91f Author: Bastien Nocera Date: Tue Sep 25 10:47:48 2012 +0200 @@ -52314,7 +52424,7 @@ po/ar.po | 357 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 187 insertions(+), 170 deletions(-) -commit 5a23d99ce95c707ce326ff6c9f75cc9e3175f058 (tag: GNOME_CONTROL_CENTER_3_5_92) +commit 5a23d99ce95c707ce326ff6c9f75cc9e3175f058 Author: Bastien Nocera Date: Mon Sep 17 19:49:36 2012 +0200 @@ -53909,7 +54019,7 @@ po/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -commit 3bff79d8210453e31ec30a4d69df1a7e546da3ec (tag: GNOME_CONTROL_CENTER_3_5_91) +commit 3bff79d8210453e31ec30a4d69df1a7e546da3ec Author: Bastien Nocera Date: Tue Sep 4 21:51:58 2012 +0100 @@ -55035,7 +55145,7 @@ shell/cc-panel.h | 14 ++++++++++++++ 19 files changed, 32 insertions(+), 104 deletions(-) -commit 0c1a76df6ac1d12b23f911c07607b19e51f167f8 (tag: GNOME_CONTROL_CENTER_3_5_90) +commit 0c1a76df6ac1d12b23f911c07607b19e51f167f8 Author: Bastien Nocera Date: Tue Aug 21 18:41:25 2012 +0100 @@ -56024,7 +56134,7 @@ panels/printers/printers.ui | 182 +----------------------------------- 2 files changed, 4 insertions(+), 198 deletions(-) -commit 0f5eae643b186162c1397e1b05b5aa19e144f77e (tag: GNOME_CONTROL_CENTER_3_5_6) +commit 0f5eae643b186162c1397e1b05b5aa19e144f77e Author: Bastien Nocera Date: Wed Aug 8 17:20:52 2012 +0100 @@ -56643,7 +56753,7 @@ 1 file changed, 836 insertions(+), 495 deletions(-) commit b05de99a0be85ae4abaf437a9a10b6397f535320 -Merge: fbe6756c6 5c5c538eb +Merge: fbe6756 5c5c538 Author: Richard Hughes Date: Fri Jul 27 16:20:37 2012 +0100 @@ -57141,7 +57251,7 @@ po/lt.po | 1592 +++++++++++++++++++++++++++++--------------------------------- 1 file changed, 754 insertions(+), 838 deletions(-) -commit fad7dcba736a2b3a3e873d442475fdd3c17e4b23 (tag: GNOME_CONTROL_CENTER_3_5_5) +commit fad7dcba736a2b3a3e873d442475fdd3c17e4b23 Author: Bastien Nocera Date: Tue Jul 17 19:09:17 2012 +0100 @@ -58254,7 +58364,7 @@ po/es.po | 73 +++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 42 insertions(+), 31 deletions(-) -commit 953da26d6876ecf3da9fd1841df2bc5f08a0d774 (tag: GNOME_CONTROL_CENTER_3_5_4) +commit 953da26d6876ecf3da9fd1841df2bc5f08a0d774 Author: Bastien Nocera Date: Tue Jun 26 16:39:14 2012 +0100 @@ -58282,7 +58392,7 @@ po/sl.po | 121 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 71 insertions(+), 50 deletions(-) -commit cfa3aaed0fda99a8bfe3cb169e43992c2141560a (tag: GNOME_CONTROL_CENTER_3_5_3) +commit cfa3aaed0fda99a8bfe3cb169e43992c2141560a Author: Bastien Nocera Date: Mon Jun 25 19:01:07 2012 +0100 @@ -59645,7 +59755,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 29fc916be101ee7b259ab9a54949a2f2ed0010f5 (tag: 3.5.2) +commit 29fc916be101ee7b259ab9a54949a2f2ed0010f5 Author: Matthias Clasen Date: Tue Jun 5 00:02:38 2012 -0400 @@ -61965,7 +62075,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit bff2c80f0e3aa462f98d66df7be2da3d5738001e (tag: GNOME_CONTROL_CENTER_3_4_0) +commit bff2c80f0e3aa462f98d66df7be2da3d5738001e Author: Richard Hughes Date: Mon Mar 26 18:03:29 2012 +0100 @@ -62223,7 +62333,7 @@ po/as.po | 9309 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 6340 insertions(+), 2969 deletions(-) -commit 5f614d6361147916365e75cd8c44a2fdb7cb7c1b (tag: GNOME_CONTROL_CENTER_3_3_92) +commit 5f614d6361147916365e75cd8c44a2fdb7cb7c1b Author: Richard Hughes Date: Mon Mar 19 09:49:32 2012 +0000 @@ -62703,7 +62813,7 @@ po/sl.po | 3066 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 1644 insertions(+), 1422 deletions(-) -commit daa86f15bce4277def58eb653b91496785b2d474 (tag: GNOME_CONTROL_CENTER_3_3_91) +commit daa86f15bce4277def58eb653b91496785b2d474 Author: Bastien Nocera Date: Mon Mar 5 19:30:35 2012 +0000 @@ -63454,7 +63564,7 @@ po/gl.po | 153 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 81 insertions(+), 72 deletions(-) -commit 92dfeff5afa8a71512c85d534506a8d014cd645d (tag: GNOME_CONTROL_CENTER_3_3_90) +commit 92dfeff5afa8a71512c85d534506a8d014cd645d Author: Bastien Nocera Date: Tue Feb 21 10:27:17 2012 +0100 @@ -64653,7 +64763,7 @@ po/gl.po | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 77 insertions(+), 12 deletions(-) -commit 072460595702a0bd48c95b5d96ee3d55b04d7312 (tag: GNOME_CONTROL_CENTER_3_3_5) +commit 072460595702a0bd48c95b5d96ee3d55b04d7312 Author: Bastien Nocera Date: Tue Feb 7 18:29:35 2012 +0000 @@ -65728,7 +65838,7 @@ panels/wacom/gsd-wacom-device.h | 6 + 5 files changed, 248 insertions(+), 4 deletions(-) -commit 93a80dd83232dfb8962eb948ff5b5d547350a381 (tag: GNOME_CONTROL_CENTER_3_3_4_1) +commit 93a80dd83232dfb8962eb948ff5b5d547350a381 Author: Bastien Nocera Date: Wed Jan 18 17:02:07 2012 +0000 @@ -65748,7 +65858,7 @@ panels/bluetooth/cc-bluetooth-panel.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -commit 53c0acacb9192787286099e4a34d2d4885b81c35 (tag: GNOME_CONTROL_CENTER_3_3_4) +commit 53c0acacb9192787286099e4a34d2d4885b81c35 Author: Bastien Nocera Date: Tue Jan 17 15:33:04 2012 +0000 @@ -67092,7 +67202,7 @@ po/lt.po | 5513 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 2710 insertions(+), 2803 deletions(-) -commit 8570e384246c762083a7c7115fa13cdd93fdb6f2 (tag: 3.3.3) +commit 8570e384246c762083a7c7115fa13cdd93fdb6f2 Author: Matthias Clasen Date: Wed Dec 21 13:25:22 2011 -0500 @@ -67765,7 +67875,7 @@ panels/common/language-chooser.ui | 1 + 1 file changed, 1 insertion(+) -commit ee925d473128220520d6479edd6d387831835126 (tag: GNOME_CONTROL_CENTER_3_3_2) +commit ee925d473128220520d6479edd6d387831835126 Author: Rodrigo Moya Date: Tue Nov 22 11:21:30 2011 +0100 @@ -71570,7 +71680,7 @@ panels/screen/cc-screen-panel.c | 3 +++ 1 file changed, 3 insertions(+) -commit 824c26c925a905b7cb9b2b7494589d7d3ff54462 (tag: GNOME_CONTROL_CENTER_3_1_90) +commit 824c26c925a905b7cb9b2b7494589d7d3ff54462 Author: Rodrigo Moya Date: Tue Aug 30 12:11:15 2011 +0200 @@ -72900,7 +73010,7 @@ panels/region/gnome-region-panel-system.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) -commit c79ca529c67e58b69d42ea0b8ea9e66e914a194d (tag: GNOME_CONTROL_CENTER_3_1_5) +commit c79ca529c67e58b69d42ea0b8ea9e66e914a194d Author: Rodrigo Moya Date: Thu Aug 18 10:50:32 2011 +0200 @@ -73253,7 +73363,7 @@ shell/control-center.c | 3 + 4 files changed, 334 insertions(+), 6 deletions(-) -commit a2ddd10073188089563144e0f6d6c7a2c7d5b7ac (tag: GNOME_CONTROL_CENTER_3_1_4) +commit a2ddd10073188089563144e0f6d6c7a2c7d5b7ac Author: Rodrigo Moya Date: Mon Jul 25 21:21:20 2011 +0200 @@ -73700,7 +73810,7 @@ panels/screen/cc-screen-panel.c | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) -commit 9a0db214257598ad870a3d89fd98544e4acda118 (tag: GNOME_CONTROL_CENTER_3_1_3) +commit 9a0db214257598ad870a3d89fd98544e4acda118 Author: Rodrigo Moya Date: Mon Jul 4 18:24:55 2011 +0200 @@ -76380,7 +76490,7 @@ panels/power/cc-power-panel.c | 3 +++ 1 file changed, 3 insertions(+) -commit 721f36087a656aff4c07b7e84abc71e28d8ba3ad (tag: 3.0.1.1) +commit 721f36087a656aff4c07b7e84abc71e28d8ba3ad Author: Matthias Clasen Date: Tue Apr 26 20:58:10 2011 -0400 @@ -76524,7 +76634,7 @@ gnome-control-center.doap | 7 +++++++ 2 files changed, 11 insertions(+) -commit b8641929ab430ed6203816b2e5f0a7261b4f2724 (tag: GNOME_CONTROL_CENTER_3_0_1) +commit b8641929ab430ed6203816b2e5f0a7261b4f2724 Author: Bastien Nocera Date: Tue Apr 26 10:58:49 2011 +0100 @@ -77377,7 +77487,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit c5b11fcd226b316d954877a3cf8acecbce61e87d (tag: 3.0.0.1) +commit c5b11fcd226b316d954877a3cf8acecbce61e87d Author: Matthias Clasen Date: Wed Apr 6 10:01:38 2011 -0400 @@ -77505,7 +77615,7 @@ po/vi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -commit fcff8e64ff824507bdae0e1ea8c4a5d2c87e0092 (tag: GNOME_CONTROL_CENTER_3_0_0) +commit fcff8e64ff824507bdae0e1ea8c4a5d2c87e0092 Author: Rodrigo Moya Date: Mon Apr 4 16:53:18 2011 +0200 @@ -78170,7 +78280,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 6d42216388d06c6bd559f9602e35d124c36e8e2b (tag: 2.91.93) +commit 6d42216388d06c6bd559f9602e35d124c36e8e2b Author: Matthias Clasen Date: Mon Mar 28 19:36:01 2011 -0400 @@ -78885,7 +78995,7 @@ po/ar.po | 77 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 39 insertions(+), 38 deletions(-) -commit 0cba872aa5e9508031b619e4fd6e22853cd6d6a8 (tag: GNOME_CONTROL_CENTER_2_91_92) +commit 0cba872aa5e9508031b619e4fd6e22853cd6d6a8 Author: Rodrigo Moya Date: Mon Mar 21 17:17:45 2011 +0100 @@ -81143,7 +81253,7 @@ po/ar.po | 126 ++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 76 insertions(+), 50 deletions(-) -commit 5fdc90cc8b04c3224394fee615d265dbb8632616 (tag: GNOME_CONTROL_CENTER_2_91_91) +commit 5fdc90cc8b04c3224394fee615d265dbb8632616 Author: Bastien Nocera Date: Tue Mar 8 11:36:13 2011 +0000 @@ -82467,7 +82577,7 @@ panels/printers/cc-printers-panel.c | 99 ++++++++++++++++++++++++++++++++++--- 1 file changed, 92 insertions(+), 7 deletions(-) -commit daf6d12620795c381333cd0754883e97c3fb8b86 (tag: GNOME_CONTROL_CENTER_2_91_90) +commit daf6d12620795c381333cd0754883e97c3fb8b86 Author: Rodrigo Moya Date: Tue Feb 22 16:27:41 2011 +0100 @@ -84783,7 +84893,7 @@ 1 file changed, 1 insertion(+) commit d14235d249134ee18c91ca3a8de0f70fe595336b -Merge: 3212170fd ebfe1af83 +Merge: 3212170 ebfe1af Author: Kjartan Maraas Date: Sun Feb 6 19:10:52 2011 +0100 @@ -85341,7 +85451,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 33627f1ae804daea47f733c7cc2f24cb2fedce30 (tag: 2.91.6) +commit 33627f1ae804daea47f733c7cc2f24cb2fedce30 Author: William Jon McCann Date: Wed Feb 2 02:04:25 2011 -0500 @@ -88380,7 +88490,7 @@ po/ar.po | 4379 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 2793 insertions(+), 1586 deletions(-) -commit 64b7cbea20a074fec7b3d8f675c593526cf0afbc (tag: GNOME_CONTROL_CENTER_2_91_5) +commit 64b7cbea20a074fec7b3d8f675c593526cf0afbc Author: Rodrigo Moya Date: Mon Jan 10 17:36:15 2011 +0100 @@ -88503,7 +88613,7 @@ 1 file changed, 469 insertions(+), 317 deletions(-) commit de6af5ee29ca9f7de2677053328898a8880db3d8 -Merge: d76b70b9b 66e8e903b +Merge: d76b70b 66e8e90 Author: Giovanni Campagna Date: Thu Jan 6 20:45:40 2011 +0100 @@ -88685,7 +88795,7 @@ panels/sound/Makefile.am | 1 - 1 file changed, 1 deletion(-) -commit db2a2bce55dbeac85ac6aa924d45113057bc8f5b (tag: 2.91.4) +commit db2a2bce55dbeac85ac6aa924d45113057bc8f5b Author: Matthias Clasen Date: Wed Dec 22 11:35:25 2010 -0500 @@ -90304,7 +90414,7 @@ panels/media/gnome-media-properties.ui | 1 + 1 file changed, 1 insertion(+) -commit 6c04751f397d2a7fc3547cdf02d65a9162ecf688 (tag: GNOME_CONTROL_CENTER_2_91_3_1) +commit 6c04751f397d2a7fc3547cdf02d65a9162ecf688 Author: Rodrigo Moya Date: Mon Nov 29 23:53:25 2010 +0100 @@ -90345,7 +90455,7 @@ panels/display/scrollarea.c | 3 +++ 1 file changed, 3 insertions(+) -commit cab4c66ec653b4ed968308de2f0271f9429fdfd8 (tag: GNOME_CONTROL_CENTER_2_91_3) +commit cab4c66ec653b4ed968308de2f0271f9429fdfd8 Author: Rodrigo Moya Date: Mon Nov 29 14:37:31 2010 +0100 @@ -90418,7 +90528,7 @@ NEWS | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) -commit 66e8e903be8ad25fe3b1386d1fbda75359959e97 (origin/gobject-gnomerr) +commit 66e8e903be8ad25fe3b1386d1fbda75359959e97 Author: Giovanni Campagna Date: Sun Nov 28 17:07:24 2010 +0100 @@ -91763,7 +91873,7 @@ panels/screen/screen.ui | 350 +++++++++++++++++++++++++ 8 files changed, 666 insertions(+) -commit c09c82b2aa7af979fe5572124287c71c96488964 (tag: GNOME_CONTROL_CENTER_2_91_2) +commit c09c82b2aa7af979fe5572124287c71c96488964 Author: Rodrigo Moya Date: Tue Nov 9 19:54:44 2010 +0100 @@ -93675,7 +93785,7 @@ panels/datetime/datetime.ui | 558 +++++++++++++++++++++++++----------- 5 files changed, 517 insertions(+), 295 deletions(-) -commit ac72f765435f96ee6d40df58a9e7d01f328d11ab (tag: GNOME_CONTROL_CENTER_2_91_0) +commit ac72f765435f96ee6d40df58a9e7d01f328d11ab Author: Rodrigo Moya Date: Tue Oct 5 10:42:07 2010 +0200 @@ -94022,7 +94132,7 @@ panels/default-applications/gnome-default-applications.xml.in | 10 ---------- 1 file changed, 10 deletions(-) -commit 852af20f1bc2f20091a2697676c9053f3109b863 (tag: GNOME_CONTROL_CENTER_2_90_1) +commit 852af20f1bc2f20091a2697676c9053f3109b863 Author: Bastien Nocera Date: Wed Sep 22 12:07:17 2010 +0100 @@ -95290,7 +95400,7 @@ po/nb.po | 5379 ++++++++++++++++++++++++++++---------------------------------- 1 file changed, 2466 insertions(+), 2913 deletions(-) -commit 566ff0f93b316d574e78645967870bb592690cf4 (tag: GNOME_CONTROL_CENTER_2_31_5) +commit 566ff0f93b316d574e78645967870bb592690cf4 Author: Thomas Wood Date: Mon Jul 12 18:43:47 2010 +0100 @@ -95527,7 +95637,7 @@ po/es.po | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) -commit a26d7b56795c6c00f13696cf1c9d4967586c9907 (tag: GNOME_CONTROL_CENTER_2_31_4_2) +commit a26d7b56795c6c00f13696cf1c9d4967586c9907 Author: Thomas Wood Date: Wed Jun 30 17:34:45 2010 +0100 @@ -95598,7 +95708,7 @@ po/gl.po | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) -commit 3c92ef843e8e3ba88f908678a58c8ee089aede41 (tag: GNOME_CONTROL_CENTER_2_31_4_1) +commit 3c92ef843e8e3ba88f908678a58c8ee089aede41 Author: Thomas Wood Date: Tue Jun 29 19:42:42 2010 +0100 @@ -95648,7 +95758,7 @@ panels/datetime/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -commit a8588291eb735fd4239b3d16c7a01f0affff45fe (tag: GNOME_CONTROL_CENTER_2_31_4) +commit a8588291eb735fd4239b3d16c7a01f0affff45fe Author: Thomas Wood Date: Tue Jun 29 17:06:58 2010 +0100 @@ -95659,7 +95769,7 @@ 2 files changed, 28 insertions(+), 1 deletion(-) commit 0cbbf01710e3a4bd7f644622e859ba848b773ffd -Merge: 4916f35dc 8c6eba787 +Merge: 4916f35 8c6eba7 Author: Thomas Wood Date: Tue Jun 29 14:41:48 2010 +0100 @@ -95711,7 +95821,7 @@ panels/datetime/set-timezone.c | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) -commit 89e778c362cdb1ed0a2f6ece855fd9d1e03ba043 (origin/wip/datetime-panel) +commit 89e778c362cdb1ed0a2f6ece855fd9d1e03ba043 Author: Thomas Wood Date: Mon Jun 28 18:06:33 2010 +0100 @@ -96143,7 +96253,7 @@ po/et.po | 433 ++++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 291 insertions(+), 142 deletions(-) -commit 4b64b669ef48c96fc42c3cf1bf8145b6183d8c4e (tag: GNOME_CONTROL_CENTER_2_31_3) +commit 4b64b669ef48c96fc42c3cf1bf8145b6183d8c4e Author: Thomas Wood Date: Mon Jun 7 18:04:02 2010 +0100 @@ -96718,7 +96828,7 @@ po/es.po | 1132 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 540 insertions(+), 592 deletions(-) -commit 45c5eeb522b0da8146811d9690228c055f2afe5e (tag: GNOME_CONTROL_CENTER_2_31_2) +commit 45c5eeb522b0da8146811d9690228c055f2afe5e Author: Thomas Wood Date: Mon May 24 23:09:36 2010 +0100 @@ -97075,7 +97185,7 @@ panels/mouse/mouse-module.c | 41 ++++++ 16 files changed, 293 insertions(+), 54 deletions(-) -commit 3748173b42305194642a918382f835e85f0682ca (origin/wip/libgnome-control-center) +commit 3748173b42305194642a918382f835e85f0682ca Author: Thomas Wood Date: Thu May 20 10:01:13 2010 +0100 @@ -97267,7 +97377,7 @@ po/gl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -commit 16fad4785d3b47376a3f4c52512e9ae7586c1717 (tag: GNOME_CONTROL_CENTER_2_31_1) +commit 16fad4785d3b47376a3f4c52512e9ae7586c1717 Author: Rodrigo Moya Date: Wed May 5 12:34:01 2010 +0200 @@ -97755,7 +97865,7 @@ 1 file changed, 73 insertions(+), 53 deletions(-) commit 5180a99017661d988010d4ad82bd365a1373c45b -Merge: 8a31bf892 c30ff27d1 +Merge: 8a31bf8 c30ff27 Author: Federico Mena Quintero Date: Tue Apr 6 18:31:07 2010 -0500 @@ -97838,7 +97948,7 @@ po/crh.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) -commit e9b7e0a11c12546040baaa9ea36f4a67ab1ade7a (tag: GNOME_CONTROL_CENTER_2_30_0) +commit e9b7e0a11c12546040baaa9ea36f4a67ab1ade7a Author: Rodrigo Moya Date: Mon Mar 29 16:42:20 2010 +0200 @@ -98074,7 +98184,7 @@ po/cs.po | 776 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 388 insertions(+), 388 deletions(-) -commit c30ff27d1f0d8ea5ad17a3699ef57c027dcad9d8 (origin/randr-set-as-default) +commit c30ff27d1f0d8ea5ad17a3699ef57c027dcad9d8 Author: Federico Mena Quintero Date: Fri Mar 19 16:44:01 2010 -0600 @@ -98470,7 +98580,7 @@ capplets/appearance/gnome-wp-item.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit e7d0577a6167b325bd8ed6634c4f99b5b11ae47f (tag: GNOME_CONTROL_CENTER_2_9_92) +commit e7d0577a6167b325bd8ed6634c4f99b5b11ae47f Author: Rodrigo Moya Date: Mon Mar 8 13:18:49 2010 +0100 @@ -98639,7 +98749,7 @@ po/en_GB.po | 831 ++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 439 insertions(+), 392 deletions(-) -commit 3b60923dcb26d4620cca95debab28ef11964156c (tag: GNOME_CONTROL_CENTER_2_29_1) +commit 3b60923dcb26d4620cca95debab28ef11964156c Author: Frédéric Péters Date: Wed Feb 24 15:19:56 2010 +0100 @@ -98824,7 +98934,7 @@ 1 file changed, 108 insertions(+), 96 deletions(-) commit b03eba7c2fd1449584182ae79a9c98f2a1a8784d -Merge: b4ec774a1 38bd06450 +Merge: b4ec774 38bd064 Author: Federico Mena Quintero Date: Wed Feb 17 17:56:18 2010 -0600 @@ -98866,7 +98976,7 @@ capplets/display/xrandr-capplet.c | 2 ++ 1 file changed, 2 insertions(+) -commit 188d5bfefb58fe4b084e77848d5fce868c9064c9 (origin/display-capplet-ui-cleanup) +commit 188d5bfefb58fe4b084e77848d5fce868c9064c9 Author: Federico Mena Quintero Date: Tue Feb 16 15:09:06 2010 -0600 @@ -99018,7 +99128,7 @@ po/hu.po | 217 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 110 insertions(+), 107 deletions(-) -commit 8c54184c87338c710cd25092e7c30c59d29d0022 (tag: GNOME_CONTROL_CENTER_2_29_90) +commit 8c54184c87338c710cd25092e7c30c59d29d0022 Author: Rodrigo Moya Date: Mon Feb 8 12:38:15 2010 +0100 @@ -99187,7 +99297,7 @@ capplets/default-applications/gnome-at-session.desktop.in.in | 1 + 1 file changed, 1 insertion(+) -commit 646355855fb90ccc843afed42ee2d98dc0f58c4d (tag: GNOME_CONTROL_CENTER_2_29_6) +commit 646355855fb90ccc843afed42ee2d98dc0f58c4d Author: Rodrigo Moya Date: Tue Jan 26 10:03:31 2010 +0100 @@ -99342,7 +99452,7 @@ configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 7b201885a7c7d05be10d766ad46663f7457e2bb8 (tag: GNOME_CONTROL_CENTER_2_29_4) +commit 7b201885a7c7d05be10d766ad46663f7457e2bb8 Author: Vincent Untz Date: Thu Dec 24 00:45:44 2009 +0100 @@ -100430,7 +100540,7 @@ configure.in | 11 ----------- 1 file changed, 11 deletions(-) -commit 1d9875e0fc28a600f46bad94bec9050b817762d8 (tag: GNOME_CONTROL_CENTER_2_28_0) +commit 1d9875e0fc28a600f46bad94bec9050b817762d8 Author: Rodrigo Moya Date: Mon Sep 21 13:11:40 2009 +0200 @@ -101150,7 +101260,7 @@ po/es.po | 131 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 70 insertions(+), 61 deletions(-) -commit fc20a37d82c63529d59aa14b73f15e732b2d8210 (tag: GNOME_CONTROL_CENTER_2_27_91) +commit fc20a37d82c63529d59aa14b73f15e732b2d8210 Author: Rodrigo Moya Date: Mon Aug 24 18:03:34 2009 +0200 @@ -101424,7 +101534,7 @@ po/pt_BR.po | 1124 +++++++++++++++++++++++++++++++---------------------------- 1 file changed, 583 insertions(+), 541 deletions(-) -commit 6f7ce8ca876acb127d39bf3c5e6f7a6743a1b7bc (tag: GNOME_CONTROL_CENTER_2_27_90) +commit 6f7ce8ca876acb127d39bf3c5e6f7a6743a1b7bc Author: Antón Méixome Date: Mon Aug 17 13:29:29 2009 +0200 @@ -101848,7 +101958,7 @@ capplets/common/activate-settings-daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit cc1b9bf9e781867a9078eed5e4c6be96b6643c51 (tag: GNOME_CONTROL_CENTER_2_27_5) +commit cc1b9bf9e781867a9078eed5e4c6be96b6643c51 Author: Rodrigo Moya Date: Thu Aug 6 16:15:56 2009 +0200 @@ -102204,13 +102314,13 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 8aad6bce09bcdc4f06c7228ae09423b47b19ac16 -Merge: 9985e70d3 abac22a41 +Merge: 9985e70 abac22a Author: Thomas Wood Date: Sun Jul 26 23:20:06 2009 +0100 Merge branch 'font-viewer-revamp' -commit abac22a412a6ec7f1e63f1af275690585845414a (origin/font-viewer-revamp) +commit abac22a412a6ec7f1e63f1af275690585845414a Author: Thomas Wood Date: Sun Jul 26 20:45:34 2009 +0100 @@ -102508,7 +102618,7 @@ capplets/display/xrandr-capplet.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) -commit a6c2dd827b7d355daecd1e21d93bb50e4ba4187b (tag: GNOME_CONTROL_CENTER_2_27_4_1) +commit a6c2dd827b7d355daecd1e21d93bb50e4ba4187b Author: Rodrigo Moya Date: Thu Jul 16 16:32:31 2009 +0200 @@ -102593,7 +102703,7 @@ capplets/about-me/icons/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) -commit 21eda8861210d08b8b8eaf8205c40f634abfd3eb (tag: GNOME_CONTROL_CENTER_2_27_4) +commit 21eda8861210d08b8b8eaf8205c40f634abfd3eb Author: Rodrigo Moya Date: Wed Jul 15 17:33:23 2009 +0200 @@ -102942,7 +103052,7 @@ po/uk.po | 1783 +++++++++++++++++++++++++++----------------------------------- 1 file changed, 787 insertions(+), 996 deletions(-) -commit 1f01217ea9a6a062f38f592cdefa22cb2566f344 (tag: GNOME_CONTROL_CENTER_2_27_3) +commit 1f01217ea9a6a062f38f592cdefa22cb2566f344 Author: Rodrigo Moya Date: Mon Jun 29 21:03:41 2009 +0200 @@ -103137,7 +103247,7 @@ po/nb.po | 422 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 186 insertions(+), 236 deletions(-) -commit 74e06ac80e3c34b416ca0a72615dfa11398b8d33 (origin/randr-hotplug) +commit 74e06ac80e3c34b416ca0a72615dfa11398b8d33 Author: Federico Mena Quintero Date: Sat May 30 20:47:42 2009 -0500 @@ -104034,7 +104144,7 @@ po/nb.po | 305 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 160 insertions(+), 149 deletions(-) -commit 9012e193e1fa7042f3b51d2586907c1dd16960ea (tag: GNOME_CONTROL_CENTER_2_26_0) +commit 9012e193e1fa7042f3b51d2586907c1dd16960ea Author: Rodrigo Moya Date: Tue Mar 17 00:03:15 2009 +0000 @@ -104845,7 +104955,7 @@ font-viewer/totem-resources.h | 33 +++++++++++ 5 files changed, 175 insertions(+), 1 deletion(-) -commit a84019b447b060c9ec61611b95404cb82c54748b (tag: GNOME_CONTROL_CENTER_2_25_92) +commit a84019b447b060c9ec61611b95404cb82c54748b Author: Jens Granseuer Date: Mon Mar 2 21:57:20 2009 +0000 @@ -105848,7 +105958,7 @@ typing-break/ChangeLog | 2 ++ 19 files changed, 41 insertions(+), 1 deletion(-) -commit 654595597008bb29ef5c00a4b887a24984e04712 (tag: GNOME_CONTROL_CENTER_2_25_90) +commit 654595597008bb29ef5c00a4b887a24984e04712 Author: Vincent Untz Date: Wed Feb 4 22:30:15 2009 +0000 @@ -106712,7 +106822,7 @@ po/es.po | 591 ++++++++++++++++++++++++++--------------------------------- 2 files changed, 264 insertions(+), 331 deletions(-) -commit a4f09695255ddd6d362dc4f6ca44b4d97292816f (tag: GNOME_CONTROL_CENTER_2_25_3) +commit a4f09695255ddd6d362dc4f6ca44b4d97292816f Author: Bastien Nocera Date: Thu Dec 18 19:30:08 2008 +0000 @@ -107083,7 +107193,7 @@ capplets/display/xrandr-capplet.c | 93 +++++++++++++++++++++++---------------- 2 files changed, 66 insertions(+), 39 deletions(-) -commit 89754a6b3a13f2037580aab364fe750f38646eda (tag: GNOME_CONTROL_CENTER_2_25_2) +commit 89754a6b3a13f2037580aab364fe750f38646eda Author: Rodrigo Moya Date: Tue Dec 2 18:00:25 2008 +0000 @@ -107618,7 +107728,7 @@ typing-break/ChangeLog | 2 ++ 20 files changed, 43 insertions(+), 1 deletion(-) -commit c7422731808beb8918e4205118e0c79dbe5452ab (tag: GNOME_CONTROL_CENTER_2_25_1) +commit c7422731808beb8918e4205118e0c79dbe5452ab Author: Vincent Untz Date: Wed Nov 5 14:53:37 2008 +0000 @@ -109218,7 +109328,7 @@ typing-break/ChangeLog | 2 ++ 20 files changed, 43 insertions(+), 1 deletion(-) -commit f42cc38fc256722106101999dcd106189a9e1bdc (tag: GNOME_CONTROL_CENTER_2_24_0_1) +commit f42cc38fc256722106101999dcd106189a9e1bdc Author: Vincent Untz Date: Wed Sep 24 16:50:08 2008 +0000 @@ -111074,7 +111184,7 @@ po/pl.po | 2423 ++++++++++++++++++++++++++-------------------------------- 2 files changed, 1084 insertions(+), 1343 deletions(-) -commit 2f0e686793ea399b11b0e6a239f4dd8002ff4d97 (tag: GNOME_CONTROL_CENTER_2_23_90) +commit 2f0e686793ea399b11b0e6a239f4dd8002ff4d97 Author: Rodrigo Moya Date: Mon Aug 18 17:55:43 2008 +0000 @@ -111581,7 +111691,7 @@ po/ar.po | 212 ++++++++++++++++++++++++++++------------------------------- 2 files changed, 106 insertions(+), 110 deletions(-) -commit 5b8b3ac61d2b221dc79b7c8195bc659efa40d7c6 (tag: GNOME_CONTROL_CENTER_2_23_6) +commit 5b8b3ac61d2b221dc79b7c8195bc659efa40d7c6 Author: Rodrigo Moya Date: Tue Aug 5 11:53:49 2008 +0000 @@ -112336,7 +112446,7 @@ capplets/keybindings/gnome-keybinding-properties.c | 118 ++++++++++++++++----- 2 files changed, 102 insertions(+), 25 deletions(-) -commit bb97264fdde6a0e7dc35df153e4141d4bf6eacde (tag: GNOME_CONTROL_CENTER_2_23_5) +commit bb97264fdde6a0e7dc35df153e4141d4bf6eacde Author: Søren Sandmann Date: Thu Jul 24 20:19:50 2008 +0000 @@ -113017,7 +113127,7 @@ capplets/display/xrandr-capplet.c | 1708 ++++++++++++++++++++++++++ 11 files changed, 5349 insertions(+), 1 deletion(-) -commit 29d0d290051216f797bf68d1be0cf3f02d718e5f (tag: GNOME_CONTROL_CENTER_2_23_4) +commit 29d0d290051216f797bf68d1be0cf3f02d718e5f Author: Rodrigo Moya Date: Mon Jun 16 15:48:47 2008 +0000 @@ -113187,7 +113297,7 @@ po/es.po | 387 +++++++++++++++++++++++++++++++---------------------------- 2 files changed, 207 insertions(+), 184 deletions(-) -commit 1147b57debb7f42da612e76793c0ecc3b2d1ffae (tag: GNOME_CONTROL_CENTER_2_23_3) +commit 1147b57debb7f42da612e76793c0ecc3b2d1ffae Author: Jens Granseuer Date: Tue Jun 3 22:11:26 2008 +0000 @@ -113647,7 +113757,7 @@ vfs-methods/themus/ChangeLog | 2 ++ 22 files changed, 47 insertions(+), 1 deletion(-) -commit c8253a00b9ac9a93b0b1973d3e212b515600257a (tag: GNOME_CONTROL_CENTER_2_23_2) +commit c8253a00b9ac9a93b0b1973d3e212b515600257a Author: Vincent Untz Date: Sat May 17 16:45:43 2008 +0000 @@ -115465,7 +115575,7 @@ capplets/about-me/gnome-about-me.c | 46 ++++++++++++++++---------------------- 2 files changed, 25 insertions(+), 27 deletions(-) -commit 2bbedf112fa0c6ca1e9d2691ed85423f048231a0 (tag: GNOME_CONTROL_CENTER_2_23_1) +commit 2bbedf112fa0c6ca1e9d2691ed85423f048231a0 Author: Rodrigo Moya Date: Mon Apr 21 16:11:06 2008 +0000 @@ -116775,7 +116885,7 @@ capplets/common/gconf-property-editor.c | 11 +++++------ 2 files changed, 11 insertions(+), 6 deletions(-) -commit d7b2a5e962e32e94e0bd28f9d51717825e111ea6 (tag: GNOME_CONTROL_CENTER_2_22_0) +commit d7b2a5e962e32e94e0bd28f9d51717825e111ea6 Author: Rahul Bhalerao Date: Mon Mar 10 12:03:25 2008 +0000 @@ -117444,7 +117554,7 @@ NEWS | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit ffff49e35add17e9ea47b50cb64d911e5cb53620 (tag: GNOME_CONTROL_CENTER_2_21_92) +commit ffff49e35add17e9ea47b50cb64d911e5cb53620 Author: Thomas Wood Date: Tue Feb 26 10:54:14 2008 +0000 @@ -118947,7 +119057,7 @@ po/he.po | 1537 +++++++++++++++++++++++++--------------------------------- 2 files changed, 677 insertions(+), 864 deletions(-) -commit aef52c5a94f86c5a7d2035b38c47010bf532d5ad (tag: GNOME_CONTROL_CENTER_2_21_90) +commit aef52c5a94f86c5a7d2035b38c47010bf532d5ad Author: Sebastien Bacher Date: Tue Jan 29 12:30:12 2008 +0000 @@ -119565,7 +119675,7 @@ configure.in | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) -commit 5f3355c49908e90ad8ef2efadbd6b03d22270837 (tag: GNOME_CONTROL_CENTER_2_21_5) +commit 5f3355c49908e90ad8ef2efadbd6b03d22270837 Author: Rodrigo Moya Date: Tue Jan 15 11:45:27 2008 +0000 @@ -120413,7 +120523,7 @@ capplets/common/gnome-theme-info.h | 2 ++ 3 files changed, 31 insertions(+) -commit ba06a8c7e537a4543885b8108159ca93c9675318 (tag: GNOME_CONTROL_CENTER_2_21_4) +commit ba06a8c7e537a4543885b8108159ca93c9675318 Author: Sergey V. Udaltsov Date: Thu Dec 20 23:01:10 2007 +0000 @@ -121238,7 +121348,7 @@ po/sv.po | 74 ++++++++++++++++++++++++++++++++++++------------------------ 2 files changed, 49 insertions(+), 29 deletions(-) -commit c5044f9e6c4a97c1bb16f5041353a3facf1d1f10 (tag: GNOME_CONTROL_CENTER_2_21_2) +commit c5044f9e6c4a97c1bb16f5041353a3facf1d1f10 Author: Rodrigo Moya Date: Mon Nov 12 22:51:32 2007 +0000 @@ -123643,7 +123753,7 @@ po/ar.po | 677 +++++++++++++++++++++-------------------------------------- 2 files changed, 246 insertions(+), 435 deletions(-) -commit 89e710b0fb06413785f9dbcb0930bd97a7e31e59 (tag: GNOME_CONTROL_CENTER_2_20_0) +commit 89e710b0fb06413785f9dbcb0930bd97a7e31e59 Author: Rodrigo Moya Date: Mon Sep 17 15:31:04 2007 +0000 @@ -124295,7 +124405,7 @@ po/da.po | 3728 +++++++++++++++++++++++++++++----------------------------- 2 files changed, 1871 insertions(+), 1861 deletions(-) -commit b98e17b7fb559e4f5426d78dab0cc688e7181472 (tag: GNOME_CONTROL_CENTER_2_19_92) +commit b98e17b7fb559e4f5426d78dab0cc688e7181472 Author: Runa Bhattacharjee Date: Mon Sep 3 14:18:44 2007 +0000 @@ -124510,7 +124620,7 @@ shell/gnomecc.desktop.in.in | 1 + 2 files changed, 5 insertions(+) -commit ccdb794235ecd74346634b55e6d642a564a159cb (tag: GNOME_CONTROL_CENTER_2_19_91) +commit ccdb794235ecd74346634b55e6d642a564a159cb Author: Rodrigo Moya Date: Wed Aug 29 09:58:38 2007 +0000 @@ -125425,7 +125535,7 @@ po/th.po | 134 +++++++++++++++++++++++++++++++++++------------------------ 2 files changed, 83 insertions(+), 55 deletions(-) -commit afeda323e47a1a19ad37c68c7a609e702f26064b (tag: GNOME_CONTROL_CENTER_2_19_90) +commit afeda323e47a1a19ad37c68c7a609e702f26064b Author: Satoru Satoh Date: Mon Aug 13 18:10:53 2007 +0000 @@ -128073,7 +128183,7 @@ po/gu.po | 3234 ++++++++++++++++++++++++++++++---------------------------- 2 files changed, 1694 insertions(+), 1544 deletions(-) -commit d5ad5320bc82512913c0e5561f07aad053d72af0 (tag: GNOME_CONTROL_CENTER_2_19_5) +commit d5ad5320bc82512913c0e5561f07aad053d72af0 Author: Rodrigo Moya Date: Mon Jul 9 22:00:15 2007 +0000 @@ -129697,7 +129807,7 @@ po/bg.po | 3320 +++++++++++++++++++++++++++++----------------------------- 2 files changed, 1690 insertions(+), 1635 deletions(-) -commit 8e3b9d4eebee7c903794e7c281fe8c79862c602b (tag: GNOME_CONTROL_CENTER_2_19_4) +commit 8e3b9d4eebee7c903794e7c281fe8c79862c602b Author: Rodrigo Moya Date: Mon Jun 18 20:56:53 2007 +0000 @@ -130849,7 +130959,7 @@ po/es.po | 1172 ++++++++++++++++++++++------------------------------------ 2 files changed, 451 insertions(+), 725 deletions(-) -commit 87e767a7ef27ba61a162b330e7b8bd9029fcc987 (tag: GNOME_CONTROL_CENTER_2_19_3) +commit 87e767a7ef27ba61a162b330e7b8bd9029fcc987 Author: Rodrigo Moya Date: Mon Jun 4 16:49:58 2007 +0000 @@ -135642,7 +135752,7 @@ help/uk/uk.po | 140 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 141 insertions(+), 1 deletion(-) -commit e0f8a16b4e74ca213723fe6c7bea301212eb1c35 (tag: GNOME_CONTROL_CENTER_2_18_0) +commit e0f8a16b4e74ca213723fe6c7bea301212eb1c35 Author: Rodrigo Moya Date: Mon Mar 12 18:57:24 2007 +0000 @@ -136303,7 +136413,7 @@ po/lt.po | 631 +++++++++++++++++++++++++++++++++-------------------------- 2 files changed, 363 insertions(+), 272 deletions(-) -commit 3c9cc64cf195cd3d99448eb5a1aefbe6f1582726 (tag: GNOME_CONTROL_CENTER_2_17_92) +commit 3c9cc64cf195cd3d99448eb5a1aefbe6f1582726 Author: Rodrigo Moya Date: Mon Feb 26 20:37:38 2007 +0000 @@ -137116,7 +137226,7 @@ po/pt.po | 1225 +++++++++++++++++++++++++++++++++++++--------------------- 2 files changed, 785 insertions(+), 444 deletions(-) -commit 6e6569c9a33adb4f589d89d7c103f9c252ec5e59 (tag: GNOME_CONTROL_CENTER_2_17_91) +commit 6e6569c9a33adb4f589d89d7c103f9c252ec5e59 Author: Rodrigo Moya Date: Mon Feb 12 22:17:57 2007 +0000 @@ -139116,7 +139226,7 @@ po/et.po | 33 +++++---------------------------- 2 files changed, 9 insertions(+), 28 deletions(-) -commit fc32bc6b785f745be700cd30306cb5a730932e29 (tag: GNOME_CONTROL_CENTER_2_17_90) +commit fc32bc6b785f745be700cd30306cb5a730932e29 Author: Rodrigo Moya Date: Mon Jan 22 18:09:42 2007 +0000 @@ -139924,7 +140034,7 @@ po/pa.po | 935 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 547 insertions(+), 388 deletions(-) -commit adfa668f984b67829cf30cbb9b4f06b6ec257d3c (tag: GNOME_CONTROL_CENTER_2_17_5) +commit adfa668f984b67829cf30cbb9b4f06b6ec257d3c Author: Thomas Wood Date: Tue Jan 9 00:19:21 2007 +0000 @@ -141435,7 +141545,7 @@ po/th.po | 356 +++++++++++++++++++++++++++++++++++++++++------------------ 2 files changed, 252 insertions(+), 108 deletions(-) -commit ae01263da78dc3754307ae861272220ea341eca7 (tag: GNOME_CONTROL_CENTER_2_17_4) +commit ae01263da78dc3754307ae861272220ea341eca7 Author: Sebastien Bacher Date: Tue Dec 19 16:36:42 2006 +0000 @@ -141931,7 +142041,7 @@ po/th.po | 470 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 246 insertions(+), 228 deletions(-) -commit 4c28ac2e4f2a56ef25c53319a76e81b96bf7f9ad (tag: GNOME_CONTROL_CENTER_2_17_3) +commit 4c28ac2e4f2a56ef25c53319a76e81b96bf7f9ad Author: Rodrigo Moya Date: Mon Dec 4 21:28:40 2006 +0000 @@ -142370,7 +142480,7 @@ configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 18e1885e87a54531c795cb6248b3502fd15cdabb (tag: GNOME_CONTROL_CENTER_2_17_1) +commit 18e1885e87a54531c795cb6248b3502fd15cdabb Author: Rodrigo Moya Date: Mon Oct 16 20:54:18 2006 +0000 @@ -142774,7 +142884,7 @@ configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit c58d2febacfa7d8a62a43e4a7eb2663d7a2153b1 (tag: GNOME_CONTROL_CENTER_2_16_0) +commit c58d2febacfa7d8a62a43e4a7eb2663d7a2153b1 Author: Rodrigo Moya Date: Mon Sep 4 09:56:55 2006 +0000 @@ -143248,7 +143358,7 @@ po/mr.po | 280 +++++++++++++++++++++++++---------------------------------- 2 files changed, 121 insertions(+), 163 deletions(-) -commit 7173f6e3d8a89e5897cfeabfe890a1c3422e4065 (tag: NAUTILUS_2_17_1, tag: NAUTILUS_2_16_3, tag: NAUTILUS_2_16_2, tag: NAUTILUS_2_16_1, tag: NAUTILUS_2_16_0, tag: GNOME_2_16_BRANCHPOINT) +commit 7173f6e3d8a89e5897cfeabfe890a1c3422e4065 Author: Kjartan Maraas Date: Wed Aug 23 05:34:45 2006 +0000 @@ -143281,7 +143391,7 @@ configure.in | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) -commit 89fcdff8fd6fbc871491ce39964cbddca6f51790 (tag: GNOME_CONTROL_CENTER_2_15_92) +commit 89fcdff8fd6fbc871491ce39964cbddca6f51790 Author: Sebastien Bacher Date: Tue Aug 22 16:24:19 2006 +0000 @@ -143330,7 +143440,7 @@ capplets/theme-switcher/gnome-theme-manager.c | 123 +++++++++++++++----------- 2 files changed, 74 insertions(+), 54 deletions(-) -commit 0630f59b94298028c8e0610f5752e9e275f3222c (tag: NAUTILUS_2_15_92_1) +commit 0630f59b94298028c8e0610f5752e9e275f3222c Author: Rodney Dawes Date: Mon Aug 21 18:11:53 2006 +0000 @@ -143347,7 +143457,7 @@ libbackground/preferences.c | 11 ++++------- 2 files changed, 11 insertions(+), 7 deletions(-) -commit d737308522f4017462aed5fa06e09135ddfa3513 (tag: NAUTILUS_2_15_92) +commit d737308522f4017462aed5fa06e09135ddfa3513 Author: Kjartan Maraas Date: Mon Aug 21 12:58:40 2006 +0000 @@ -143836,7 +143946,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit ca25792b441e7f8bd0eeda24c73eadfed69bd15c (tag: GNOME_CONTROL_CENTER_2_15_91) +commit ca25792b441e7f8bd0eeda24c73eadfed69bd15c Author: Francisco Javier F. Serrador Date: Mon Aug 7 16:34:14 2006 +0000 @@ -144432,7 +144542,7 @@ configure.in | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) -commit a07167977b68d17e82ba7eaaa88db7ac87c5b4c6 (tag: GNOME_CONTROL_CENTER_2_15_90) +commit a07167977b68d17e82ba7eaaa88db7ac87c5b4c6 Author: Sebastien Bacher Date: Mon Jul 24 21:59:49 2006 +0000 @@ -145095,7 +145205,7 @@ po/ta.po | 1988 +++++++++++++++++++++++++++++++--------------------------- 2 files changed, 1054 insertions(+), 938 deletions(-) -commit 0be9cdea1159052ccb0e652635d2dcf47a091534 (tag: NAUTILUS_2_15_91, tag: NAUTILUS_2_15_90, tag: NAUTILUS_2_15_4) +commit 0be9cdea1159052ccb0e652635d2dcf47a091534 Author: Sergey V. Udaltsov Date: Tue Jun 27 21:05:53 2006 +0000 @@ -145342,7 +145452,7 @@ capplets/theme-switcher/gnome-theme-installer.c | 48 ++++++++++++++++++++----- 2 files changed, 45 insertions(+), 8 deletions(-) -commit 1f5602061f0987d20f0a339a384d5393381502f1 (tag: GNOME_CONTROL_CENTER_2_15_3) +commit 1f5602061f0987d20f0a339a384d5393381502f1 Author: Rodrigo Moya Date: Mon Jun 12 21:39:33 2006 +0000 @@ -146323,7 +146433,7 @@ capplets/theme-switcher/gnome-theme-installer.c | 97 ++++++++++++++++++++----- 2 files changed, 84 insertions(+), 19 deletions(-) -commit 04a03e95d968c0afad393433a11ebe66212af469 (tag: GNOME_CONTROL_CENTER_2_14_1) +commit 04a03e95d968c0afad393433a11ebe66212af469 Author: Rodrigo Moya Date: Mon Apr 10 17:30:32 2006 +0000 @@ -146761,7 +146871,7 @@ po/vi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit bfda9020764a3e699666daa026ef96a02f0d967c (tag: GNOME_CONTROL_CENTER_2_14_0) +commit bfda9020764a3e699666daa026ef96a02f0d967c Author: Rodrigo Moya Date: Mon Mar 13 15:02:28 2006 +0000 @@ -147571,7 +147681,7 @@ capplets/default-applications/gnome-da-capplet.c | 16 +++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) -commit 4fc6f44a1763eaf1cc904f3558e3414974379463 (tag: GNOME_CONTROL_CENTER_2_13_93) +commit 4fc6f44a1763eaf1cc904f3558e3414974379463 Author: Rodrigo Moya Date: Mon Feb 27 18:32:20 2006 +0000 @@ -148108,7 +148218,7 @@ po/cs.po | 902 ++++++++++++++++++++++++++++++++++------------------------- 2 files changed, 530 insertions(+), 376 deletions(-) -commit e14bdd4bb2468a8f62d49de58d2172c49baafefe (tag: GNOME_CONTROL_CENTER_2_13_92) +commit e14bdd4bb2468a8f62d49de58d2172c49baafefe Author: Rodrigo Moya Date: Mon Feb 13 22:44:25 2006 +0000 @@ -148443,7 +148553,7 @@ configure.in | 11 ----------- 2 files changed, 4 insertions(+), 11 deletions(-) -commit c1605730b4dc78cee250466f69f0da5cdfb15cfe (tag: GNOME_CONTROL_CENTER_2_13_91) +commit c1605730b4dc78cee250466f69f0da5cdfb15cfe Author: Kjartan Maraas Date: Wed Feb 1 18:58:09 2006 +0000 @@ -148558,7 +148668,7 @@ po/gu.po | 93 ++++++++++++++++++++++++++++++++++++++++++++---------------- 2 files changed, 72 insertions(+), 25 deletions(-) -commit 76517fef93e14904c03635e48d79a82159bbe839 (tag: GNOME_CONTROL_CENTER_2_13_90) +commit 76517fef93e14904c03635e48d79a82159bbe839 Author: Rodrigo Moya Date: Mon Jan 30 18:34:27 2006 +0000 @@ -149586,7 +149696,7 @@ po/vi.po | 380 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 198 insertions(+), 186 deletions(-) -commit 04253a33b35383145f985fbf96e21f721893e833 (tag: GNOME_CONTROL_CENTER_2_13_5_1) +commit 04253a33b35383145f985fbf96e21f721893e833 Author: Rodrigo Moya Date: Wed Jan 18 12:29:38 2006 +0000 @@ -149717,7 +149827,7 @@ po/POTFILES.in | 6 ++---- 2 files changed, 6 insertions(+), 4 deletions(-) -commit 97ccdcdb05dd033eb7e82f757f5fb01f9d0d595f (tag: GNOME_CONTROL_CENTER_2_13_5) +commit 97ccdcdb05dd033eb7e82f757f5fb01f9d0d595f Author: Rodrigo Moya Date: Mon Jan 16 18:07:04 2006 +0000 @@ -150065,7 +150175,7 @@ capplets/background/gnome-wp-item.c | 9 ++++++++ 4 files changed, 70 insertions(+), 2 deletions(-) -commit 0f56daf38d2fd44aaeeb95fb79dd5b5ebe8d6765 (tag: NAUTILUS_2_15_2, tag: NAUTILUS_2_15_1, tag: NAUTILUS_2_14_3, tag: NAUTILUS_2_14_1, tag: NAUTILUS_2_14_0, tag: NAUTILUS_2_13_92, tag: NAUTILUS_2_13_91, tag: NAUTILUS_2_13_90, tag: NAUTILUS_2_13_4, tag: GNOME_2_14_BRANCHPOINT) +commit 0f56daf38d2fd44aaeeb95fb79dd5b5ebe8d6765 Author: Alan Swanson Date: Sat Jan 14 13:38:55 2006 +0000 @@ -150610,7 +150720,7 @@ po/gu.po | 95 +++++++++++++++++++++++++++++++++--------------------------- 2 files changed, 56 insertions(+), 43 deletions(-) -commit dc9eede82392dbce14db6de4344bf0d7269ed91e (tag: GNOME_CONTROL_CENTER_2_13_4) +commit dc9eede82392dbce14db6de4344bf0d7269ed91e Author: Rodrigo Moya Date: Tue Jan 3 19:23:03 2006 +0000 @@ -150846,7 +150956,7 @@ po/fr.po | 488 ++++++++++++++++++++++++++++++++--------------------------- 2 files changed, 272 insertions(+), 220 deletions(-) -commit 67fafd67fd3767519f965686a9265c3b1976b3bb (tag: GNOME_CONTROL_CENTER_2_13_3) +commit 67fafd67fd3767519f965686a9265c3b1976b3bb Author: Rodrigo Moya Date: Mon Dec 12 17:07:19 2005 +0000 @@ -151378,7 +151488,7 @@ gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++++ 2 files changed, 10 insertions(+) -commit d2e35a69cfa4b135d370493d01e6b981fb368dd9 (tag: GNOME_CONTROL_CENTER_2_13_2) +commit d2e35a69cfa4b135d370493d01e6b981fb368dd9 Author: Rodrigo Moya Date: Mon Nov 14 17:44:11 2005 +0000 @@ -151557,7 +151667,7 @@ po/bg.po | 144 +++++++++++++++++++++++++++++++++++------------------------ 2 files changed, 90 insertions(+), 59 deletions(-) -commit e55ae2cfd634602d874eb1d5b9469f72fbbb8be4 (tag: NAUTILUS_SEARCH2_MERGE_ANCHOR2, tag: NAUTILUS_SEARCH2_MERGE_ANCHOR1, tag: NAUTILUS_2_13_3, tag: NAUTILUS_2_13_2, tag: NAUTILUS_2_12_2) +commit e55ae2cfd634602d874eb1d5b9469f72fbbb8be4 Author: Alexis Robert Date: Mon Nov 7 17:56:46 2005 +0000 @@ -151779,7 +151889,7 @@ capplets/keyboard/gnome-keyboard-properties.glade | 6 ++++++ 2 files changed, 13 insertions(+) -commit fa537b014bc5c3a1551fd58e869831c03bd0d17d (tag: GNOME_CONTROL_CENTER_2_13_1) +commit fa537b014bc5c3a1551fd58e869831c03bd0d17d Author: Rodrigo Moya Date: Mon Oct 24 14:15:07 2005 +0000 @@ -152249,7 +152359,7 @@ po/et.po | 83 +++++++++++++++++++++++++++++++----------------------------- 2 files changed, 47 insertions(+), 40 deletions(-) -commit 15c3ba4d34a7c96b3561af4270b7d08f0467608e (tag: GNOME_CONTROL_CENTER_2_12_1) +commit 15c3ba4d34a7c96b3561af4270b7d08f0467608e Author: Sebastien Bacher Date: Mon Oct 3 08:47:06 2005 +0000 @@ -152311,7 +152421,7 @@ capplets/background/gnome-wp-xml.c | 23 ++++++++++++++++++++-- 4 files changed, 74 insertions(+), 12 deletions(-) -commit 3d5e4d4e75ce1605472a93f760f04dcd8195e4f0 (tag: NAUTILUS_2_13_1, tag: NAUTILUS_2_12_1, tag: GNOME_2_12_BRANCHPOINT) +commit 3d5e4d4e75ce1605472a93f760f04dcd8195e4f0 Author: Rodney Dawes Date: Sat Oct 1 21:18:21 2005 +0000 @@ -152779,7 +152889,7 @@ po/mk.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) -commit 845c1ba9b4c2a39b17f4bf3155b647a289fe288b (tag: GNOME_CONTROL_CENTER_2_12_0) +commit 845c1ba9b4c2a39b17f4bf3155b647a289fe288b Author: Sebastien Bacher Date: Sun Sep 4 13:15:25 2005 +0000 @@ -153174,7 +153284,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit f2755dfdd5f4bbd7b3358559c6f601dc7c4eae38 (tag: GNOME_CONTROL_CENTER_2_11_92) +commit f2755dfdd5f4bbd7b3358559c6f601dc7c4eae38 Author: Christian Persch Date: Mon Aug 22 13:37:11 2005 +0000 @@ -153627,7 +153737,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit 90a93fa27c15a2473901618b55913a48476f43f6 (tag: GNOME_CONTROL_CENTER_2_11_91) +commit 90a93fa27c15a2473901618b55913a48476f43f6 Author: Sebastien Bacher Date: Wed Aug 10 10:13:41 2005 +0000 @@ -154224,7 +154334,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit 9cce2ddbbc4924f50f306e0992d09282fd6e933f (tag: GNOME_CONTROL_CENTER_2_11_90) +commit 9cce2ddbbc4924f50f306e0992d09282fd6e933f Author: Sebastien Bacher Date: Wed Jul 27 13:39:47 2005 +0000 @@ -155073,7 +155183,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit dded3cf6f41318c9b9be383d4d74fae2b6e31fb9 (tag: GNOME_CONTROL_CENTER_2_11_6) +commit dded3cf6f41318c9b9be383d4d74fae2b6e31fb9 Author: Sebastien Bacher Date: Wed Jul 13 21:14:27 2005 +0000 @@ -155770,7 +155880,7 @@ capplets/about-me/gnome-about-me.glade | 2 +- 6 files changed, 78 insertions(+), 125 deletions(-) -commit f37d2a8268ccb29ce6baad24431d46b2a9df6ca2 (tag: GNOME_CONTROL_CENTER_2_11_5) +commit f37d2a8268ccb29ce6baad24431d46b2a9df6ca2 Author: Sebastien Bacher Date: Mon Jul 4 22:49:06 2005 +0000 @@ -156175,7 +156285,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit b5de7e67c90b2f9f32702496495cf69a1daf48a6 (tag: GNOME_CONTROL_CENTER_2_11_4) +commit b5de7e67c90b2f9f32702496495cf69a1daf48a6 Author: Sebastien Bacher Date: Sun Jun 12 17:46:33 2005 +0000 @@ -156253,7 +156363,7 @@ .../gnome-settings-accessibility-keyboard.c | 97 ++++++++-------------- 2 files changed, 43 insertions(+), 61 deletions(-) -commit 49601b934df132b30157201c257910e7aba8aef6 (tag: NAUTILUS_SEARCH_BRANCH_ANCHOR, tag: NAUTILUS_2_12_0, tag: NAUTILUS_2_11_92, tag: NAUTILUS_2_11_91, tag: NAUTILUS_2_11_90, tag: NAUTILUS_2_11_4, tag: NAUTILUS_2_11_3) +commit 49601b934df132b30157201c257910e7aba8aef6 Author: Kjartan Maraas Date: Fri Jun 10 18:49:06 2005 +0000 @@ -156278,7 +156388,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit 2455a253607bfe789d5a6214c44b09bb7c443827 (tag: GNOME_CONTROL_CENTER_2_11_3) +commit 2455a253607bfe789d5a6214c44b09bb7c443827 Author: Sebastien Bacher Date: Fri Jun 10 12:14:24 2005 +0000 @@ -156532,7 +156642,7 @@ po/ja.po | 374 +++++++++++++++++++++++++++-------------------------------- 2 files changed, 177 insertions(+), 201 deletions(-) -commit 67eb8b285af68cfdbc70c552914e34197fc938c4 (tag: GNOME_CONTROL_CENTER_2_11_2) +commit 67eb8b285af68cfdbc70c552914e34197fc938c4 Author: Sebastien Bacher Date: Sun May 22 20:27:48 2005 +0000 @@ -156647,7 +156757,7 @@ .../gnome-default-applications-properties.glade | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) -commit 581c37e2bb79b784625d52909e9589b88ee21324 (tag: NAUTILUS_2_11_2) +commit 581c37e2bb79b784625d52909e9589b88ee21324 Author: Sebastien Bacher Date: Sun May 22 15:46:45 2005 +0000 @@ -157037,7 +157147,7 @@ po/el.po | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) -commit 227d0296d674d63ab43774a5b4e7eb9d3da11426 (tag: NAUTILUS_2_11_1) +commit 227d0296d674d63ab43774a5b4e7eb9d3da11426 Author: Richard Hoelscher Date: Sun May 8 20:49:45 2005 +0000 @@ -157288,7 +157398,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 0b95b0a6b0e4d5e84f502f2b44bdc09642059393 (tag: GNOME_2_10_BRANCHPOINT) +commit 0b95b0a6b0e4d5e84f502f2b44bdc09642059393 Author: Adam Weinberger Date: Thu Mar 17 05:31:11 2005 +0000 @@ -157380,7 +157490,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit ec440ce760b781c0a697ace0264167ead038d250 (tag: GNOME_CONTROL_CENTER_2_10_0) +commit ec440ce760b781c0a697ace0264167ead038d250 Author: Sebastien Bacher Date: Tue Mar 8 00:27:15 2005 +0000 @@ -158100,7 +158210,7 @@ po/pt_BR.po | 255 +++++++++++++++++++++++++++++++++++++++++++++-------------- 2 files changed, 198 insertions(+), 61 deletions(-) -commit 71665a599c60ee8882323054576c825a0318c762 (tag: NAUTILUS_2_9_92, tag: NAUTILUS_2_9_91, tag: NAUTILUS_2_10_1, tag: NAUTILUS_2_10_0) +commit 71665a599c60ee8882323054576c825a0318c762 Author: Rodney Dawes Date: Thu Feb 10 05:10:51 2005 +0000 @@ -158143,7 +158253,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit 3910ed267c10808f220ab0f4cf8fd2d7a311d287 (tag: GNOME_CONTROL_CENTER_2_9_91) +commit 3910ed267c10808f220ab0f4cf8fd2d7a311d287 Author: Sebastien Bacher Date: Wed Feb 9 21:11:35 2005 +0000 @@ -159867,7 +159977,7 @@ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) -commit 3d3e0a8a738085bc1135f2c6dad703bc1e608516 (tag: GNOME_CONTROL_CENTER_2_9_4) +commit 3d3e0a8a738085bc1135f2c6dad703bc1e608516 Author: Sebastien Bacher Date: Wed Jan 12 15:15:29 2005 +0000 @@ -161068,7 +161178,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 305ee0a2e51d8e290cdc598e95cc9ff18366dfff (tag: GNOME_CONTROL_CENTER_2_9_3) +commit 305ee0a2e51d8e290cdc598e95cc9ff18366dfff Author: Sebastien Bacher Date: Mon Dec 20 22:31:03 2004 +0000 @@ -163216,7 +163326,7 @@ configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 135d52c612f6ba5b24e73f24d155625ffa7653aa (tag: NAUTILUS_2_9_90, tag: NAUTILUS_2_9_2, tag: NAUTILUS_2_9_1, tag: NAUTILUS_2_8_2, tag: GNOME_CONTROL_CENTER_2_8_1, tag: BONOBO_SLAY_STEP1_DONE, tag: BONOBO_SLAY_BRANCHPOINT, origin/bonobo-slay-branch) +commit 135d52c612f6ba5b24e73f24d155625ffa7653aa Author: Jody Goldberg Date: Thu Oct 14 19:05:48 2004 +0000 @@ -163696,7 +163806,7 @@ po/ru.po | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) -commit 2daf7534abe3ec0d382b501815740a5bc340356b (tag: GNOME_CONTROL_CENTER_2_8_0) +commit 2daf7534abe3ec0d382b501815740a5bc340356b Author: Jonathan Blandford Date: Tue Sep 14 21:52:01 2004 +0000 @@ -164559,7 +164669,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 29727e139ec52e6a1341f8f533d3a1079c91f283 (tag: GNOME_CONTROL_CENTER_2_7_1) +commit 29727e139ec52e6a1341f8f533d3a1079c91f283 Author: Jonathan Blandford Date: Mon Aug 30 02:32:38 2004 +0000 @@ -165576,7 +165686,7 @@ po/el.po | 357 +++++++++-------------------------------------------------- 2 files changed, 54 insertions(+), 307 deletions(-) -commit 4b1bc2fdf44cf92ba7020044a6b3084f5c748c88 (tag: GNOME_CONTROL_CENTER_2_7_0) +commit 4b1bc2fdf44cf92ba7020044a6b3084f5c748c88 Author: Jonathan Blandford Date: Sat Jul 31 00:58:52 2004 +0000 @@ -166478,7 +166588,7 @@ po/sq.po | 195 ++++++++++++++++++++++++++++++++++++----------------------- 2 files changed, 124 insertions(+), 75 deletions(-) -commit 331f5ad61c44e94cd7bc5880a2f645873d5eca59 (tag: NAUTILUS_NEW_MIME_BRANCHPOINT, tag: NAUTILUS_2_8_1, tag: NAUTILUS_2_8_0, tag: NAUTILUS_2_7_92, tag: NAUTILUS_2_7_4, tag: NAUTILUS_2_7_2, origin/nautilus-new-mime) +commit 331f5ad61c44e94cd7bc5880a2f645873d5eca59 Author: Rodney Dawes Date: Mon Jun 28 03:39:56 2004 +0000 @@ -167769,7 +167879,7 @@ configure.in | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) -commit d58e918c83d2832ddfe69645965f9c87a09e5f96 (tag: NAUTILUS_2_6_BRANCHPOINT, tag: NAUTILUS_2_6_3, tag: NAUTILUS_2_6_2, tag: NAUTILUS_2_6_1, tag: GNOME_CONTROL_CENTER_2_6_1, tag: GNOME_2_6_BRANCHPOINT, tag: GNOME_2_6_0_BRANCHPOINT) +commit d58e918c83d2832ddfe69645965f9c87a09e5f96 Author: Jody Goldberg Date: Fri Apr 16 02:32:42 2004 +0000 @@ -168671,7 +168781,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 1cc6acc2d5ee35d3615c6bc70e972fb8f513ab1e (tag: GNOME_CONTROL_CENTER_2_6_0_3) +commit 1cc6acc2d5ee35d3615c6bc70e972fb8f513ab1e Author: Jody Goldberg Date: Thu Apr 1 06:21:52 2004 +0000 @@ -168885,7 +168995,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit b60f2109310751a6c785bb85518966f26dfecc70 (tag: GNOME_CONTROL_CENTER_2_6_0_2) +commit b60f2109310751a6c785bb85518966f26dfecc70 Author: Mark McLoughlin Date: Wed Mar 31 16:19:29 2004 +0000 @@ -169002,7 +169112,7 @@ po/fr.po | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) -commit 4874c554f6e62d058ce0edd64a4036186fe75cbc (tag: GNOME_CONTROL_CENTER_2_6_0_1) +commit 4874c554f6e62d058ce0edd64a4036186fe75cbc Author: Jody Goldberg Date: Wed Mar 31 03:35:12 2004 +0000 @@ -169186,7 +169296,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 1df948d905c332f7a350b753d0bffdf2ab032543 (tag: GNOME_CONTROL_CENTER_2_6_0) +commit 1df948d905c332f7a350b753d0bffdf2ab032543 Author: Jody Goldberg Date: Wed Mar 24 02:58:55 2004 +0000 @@ -169595,7 +169705,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit f4fb38359c611905e44e6fc7725c675dbce79d2c (tag: NAUTILUS_2_6_0, tag: NAUTILUS_2_5_91, tag: GNOME_CONTROL_CENTER_2_5_4) +commit f4fb38359c611905e44e6fc7725c675dbce79d2c Author: Jody Goldberg Date: Thu Mar 11 06:02:19 2004 +0000 @@ -171158,7 +171268,7 @@ po/zh_TW.po | 4 ++-- 61 files changed, 157 insertions(+), 153 deletions(-) -commit 92bc252e78b20ee5cef1db37cb143488ca23df56 (tag: NAUTILUS_2_5_90, tag: NAUTILUS_2_5_8) +commit 92bc252e78b20ee5cef1db37cb143488ca23df56 Author: Muktha Date: Mon Feb 16 17:32:53 2004 +0000 @@ -171462,7 +171572,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 2688109c0b90a32044b76965c983c02ea1cb04b8 (tag: GNOME_CONTROL_CENTER_2_5_3) +commit 2688109c0b90a32044b76965c983c02ea1cb04b8 Author: Jody Goldberg Date: Fri Feb 13 15:56:12 2004 +0000 @@ -172913,7 +173023,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 261b2b983860e94d7b711c9c3d2f754640aa8c72 (tag: NAUTILUS_2_5_7, tag: NAUTILUS_2_5_6, tag: GNOME_CONTROL_CENTER_2_5_2) +commit 261b2b983860e94d7b711c9c3d2f754640aa8c72 Author: Jody Goldberg Date: Wed Jan 14 06:41:31 2004 +0000 @@ -173918,7 +174028,7 @@ po/cs.po | 41 +++++++++++++++++++++++++++++++++++------ 2 files changed, 39 insertions(+), 6 deletions(-) -commit 156cabf24f223d10be2cd6da90daaa00090e5753 (tag: NAUTILUS_EXTENSIONS_MERGEPOINT_1, tag: NAUTILUS_2_5_5, tag: GNOME_CONTROL_CENTER_2_5_1_1) +commit 156cabf24f223d10be2cd6da90daaa00090e5753 Author: Jody Goldberg Date: Wed Dec 31 17:11:31 2003 +0000 @@ -174047,7 +174157,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit e5f68bb5bdd954b7d6bd2a96c3bc0712a285a301 (tag: GNOME_CONTROL_CENTER_2_5_1) +commit e5f68bb5bdd954b7d6bd2a96c3bc0712a285a301 Author: Jody Goldberg Date: Tue Dec 30 18:30:46 2003 +0000 @@ -175270,7 +175380,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit f5ba169611addb6c1387a49777465bece57024db (tag: NAUTILUS_EXTENSIONS_BRANCH_BEFORE_MERGE_1, tag: NAUTILUS_EXTENSIONS_BRANCHPOINT, tag: NAUTILUS_2_5_3, tag: NAUTILUS_2_5_2, tag: NAUTILUS_2_5_1_1, tag: NAUTILUS_2_5_1, tag: GNOME_CONTROL_CENTER_2_5_0) +commit f5ba169611addb6c1387a49777465bece57024db Author: Jody Goldberg Date: Tue Oct 28 22:32:08 2003 +0000 @@ -175813,7 +175923,7 @@ po/lt.po | 839 +++++++++++++++++++++++++---------------------------------- 2 files changed, 361 insertions(+), 482 deletions(-) -commit 2ecf1aa6e645feb942eb2192702a4db43c25c8e9 (tag: GNOME_CONTROL_CENTER_2_5_0_ANCHOR, tag: GNOME_CONTROL_CENTER_2_4_0) +commit 2ecf1aa6e645feb942eb2192702a4db43c25c8e9 Author: Jonathan Blandford Date: Mon Sep 8 19:14:20 2003 +0000 @@ -176540,7 +176650,7 @@ po/th.po | 1222 ++++++++++++++++++++++++++++++---------------------------- 2 files changed, 638 insertions(+), 588 deletions(-) -commit 4c52543d7e36a577a64e3f0ea8d26354ebe471cc (tag: GNOME_CONTROL_CENTER_2_3_5) +commit 4c52543d7e36a577a64e3f0ea8d26354ebe471cc Author: Jonathan Blandford Date: Mon Aug 11 18:06:04 2003 +0000 @@ -177511,7 +177621,7 @@ capplets/sound/sound.desktop.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) -commit 419732753c8927552d07206f9d5ef04eeb2fc820 (tag: GNOME_CONTROL_CENTER_2_3_4) +commit 419732753c8927552d07206f9d5ef04eeb2fc820 Author: Frédéric Crozat Date: Tue Jul 29 09:22:29 2003 +0000 @@ -178664,7 +178774,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit c5b7285caa84f697e04eb9c43d657fe841d44d14 (tag: NAUTILUS_SPATIAL_PLAYGROUND_BRANCHPOINT, tag: NAUTILUS_2_5_0, tag: NAUTILUS_2_4_2, tag: NAUTILUS_2_4_1, tag: NAUTILUS_2_4_0, tag: NAUTILUS_2_3_90, tag: NAUTILUS_2_3_9, tag: NAUTILUS_2_3_8, tag: NAUTILUS_2_3_7, tag: GNOME_2_4_BRANCHPOINT, origin/reunion_medusa, origin/nautilus-spatial-playground) +commit c5b7285caa84f697e04eb9c43d657fe841d44d14 Author: Jody Goldberg Date: Mon Jul 7 04:57:46 2003 +0000 @@ -179354,7 +179464,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 07421f4a300b284b15f83406e6462d9d619ed0f9 (tag: NAUTILUS_2_3_6, tag: GNOME_CONTROL_CENTER_2_3_3) +commit 07421f4a300b284b15f83406e6462d9d619ed0f9 Author: Jody Goldberg Date: Tue Jun 24 21:04:07 2003 +0000 @@ -179866,7 +179976,7 @@ vfs-methods/.cvsignore | 2 ++ 7 files changed, 19 insertions(+), 1 deletion(-) -commit f5c8c732d37fafda052c0d17ef9daee5cc7ecf94 (tag: NAUTILUS_2_3_5, tag: NAUTILUS_2_3_4, tag: NAUTILUS_2_3_3) +commit f5c8c732d37fafda052c0d17ef9daee5cc7ecf94 Author: Jonathan Blandford Date: Mon Jun 2 18:23:04 2003 +0000 @@ -180174,7 +180284,7 @@ vfs-methods/themus/.cvsignore | 9 +++++++++ 1 file changed, 9 insertions(+) -commit b721ad6879abf2ab66b4b34d58a6807bf891de4b (tag: GNOME_CONTROL_CENTER_2_3_2) +commit b721ad6879abf2ab66b4b34d58a6807bf891de4b Author: Jonathan Blandford Date: Wed May 21 03:42:38 2003 +0000 @@ -180668,7 +180778,7 @@ po/ga.po | 72 ++++++++++++++++++++++++------------------------------------ 2 files changed, 32 insertions(+), 43 deletions(-) -commit b7a5917b6a68a54a735dfeb9a18c6d44f7381706 (tag: GNOME_CONTROL_CENTER_2_3_1) +commit b7a5917b6a68a54a735dfeb9a18c6d44f7381706 Author: Jody Goldberg Date: Wed May 7 18:55:08 2003 +0000 @@ -180693,7 +180803,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 04f119abaed6e3a1d2b1ae396037ad3a17368d9c (tag: NAUTILUS_2_3_2) +commit 04f119abaed6e3a1d2b1ae396037ad3a17368d9c Author: Jody Goldberg Date: Wed May 7 18:25:21 2003 +0000 @@ -181395,7 +181505,7 @@ vfs-methods/fontilus/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) -commit 5d62e0441bac216a34dca011c0ac032bb2701ab1 (tag: NAUTILUS_2_3_1) +commit 5d62e0441bac216a34dca011c0ac032bb2701ab1 Author: Pasupathi Duraisamy Date: Mon Apr 7 05:55:13 2003 +0000 @@ -181605,7 +181715,7 @@ .../default-applications/gnome-default-applications-properties.c | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) -commit f3517c9712e8cd84b54bc4d67568c899efe2eda2 (tag: NAUTILUS_2_2_3, tag: NAUTILUS_2_2_2, tag: GNOME_2_2_BRANCHPOINT) +commit f3517c9712e8cd84b54bc4d67568c899efe2eda2 Author: Kjartan Maraas Date: Sun Feb 16 16:07:45 2003 +0000 @@ -181628,7 +181738,7 @@ vfs-methods/fontilus/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) -commit b8d875ab3a1f7ad55b5b84db907a5d0b9531cfe2 (tag: FONTILUS_0_4) +commit b8d875ab3a1f7ad55b5b84db907a5d0b9531cfe2 Author: James Henstridge Date: Sat Feb 15 11:17:33 2003 +0000 @@ -181852,7 +181962,7 @@ capplets/font/main.c | 15 +++++++++++++-- 3 files changed, 34 insertions(+), 3 deletions(-) -commit d660af7b7a46a73b40d0f3a43398b7a80c131995 (tag: NAUTILUS_2_2_4, tag: NAUTILUS_2_2_3_1, tag: NAUTILUS_2_2_1, tag: GNOME_CONTROL_CENTER_2_2_0_1) +commit d660af7b7a46a73b40d0f3a43398b7a80c131995 Author: Jonathan Blandford Date: Wed Feb 5 15:45:30 2003 +0000 @@ -182668,7 +182778,7 @@ po/zh_TW.po | 164 ++++++++++++++++++++++------------------------------------- 2 files changed, 64 insertions(+), 104 deletions(-) -commit f6444a51ce16f1be82932b53683798524c9885a9 (tag: NAUTILUS_2_2_0_2, tag: NAUTILUS_2_2_0_1, tag: GNOME_CONTROL_CENTER_2_2_0) +commit f6444a51ce16f1be82932b53683798524c9885a9 Author: Jonathan Blandford Date: Tue Jan 21 06:53:43 2003 +0000 @@ -182936,7 +183046,7 @@ po/am.po | 48 +++++++++++++++++++++++++----------------------- 2 files changed, 29 insertions(+), 23 deletions(-) -commit b8d1d9548cd18cf4471f983847421318cb6363b0 (tag: NAUTILUS_2_2_0) +commit b8d1d9548cd18cf4471f983847421318cb6363b0 Author: Jonathan Blandford Date: Thu Jan 16 07:59:09 2003 +0000 @@ -183276,7 +183386,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 5a35e2caad92638c1f6842c59094ab0b4c42ea54 (tag: NAUTILUS_2_1_91, tag: GNOME_CONTROL_CENTER_2_1_6) +commit 5a35e2caad92638c1f6842c59094ab0b4c42ea54 Author: Jody Goldberg Date: Fri Jan 10 16:11:31 2003 +0000 @@ -183407,7 +183517,7 @@ po/cs.po | 76 +++++++++++++++++++++++++++++++----------------------------- 2 files changed, 43 insertions(+), 37 deletions(-) -commit 6fb226616a12a49933d8246535b81f812ee822af (tag: FONTILUS_0_3) +commit 6fb226616a12a49933d8246535b81f812ee822af Author: James Henstridge Date: Thu Jan 9 15:53:31 2003 +0000 @@ -184419,7 +184529,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 0c0c49f22cf5ed4e1c8645eab8af0651d82455bd (tag: NAUTILUS_2_1_6, tag: GNOME_CONTROL_CENTER_2_1_5) +commit 0c0c49f22cf5ed4e1c8645eab8af0651d82455bd Author: Jody Goldberg Date: Wed Dec 18 21:43:55 2002 +0000 @@ -184638,7 +184748,7 @@ capplets/keyboard/gnome-keyboard-properties.glade | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) -commit a9a5600915b90a9d5c9c9405f378713fe628a6f9 (tag: FONTILUS_0_2) +commit a9a5600915b90a9d5c9c9405f378713fe628a6f9 Author: James Henstridge Date: Thu Dec 12 16:16:09 2002 +0000 @@ -185055,7 +185165,7 @@ po/cs.po | 242 +++++++++++++++++++++++++++++++++++++++++++---------------- 2 files changed, 181 insertions(+), 65 deletions(-) -commit 1174a5b0a920033b55a1b51a89f206ac99d31a2a (tag: FONTILUS_0_1) +commit 1174a5b0a920033b55a1b51a89f206ac99d31a2a Author: James Henstridge Date: Thu Dec 5 15:47:45 2002 +0000 @@ -185775,7 +185885,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 4ab7f6e379644312215340f82a8d6f0f2634db60 (tag: NAUTILUS_2_1_5, tag: NAUTILUS_2_1_3, tag: GNOME_CONTROL_CENTER_2_1_3) +commit 4ab7f6e379644312215340f82a8d6f0f2634db60 Author: Jody Goldberg Date: Sun Nov 24 05:16:35 2002 +0000 @@ -186171,7 +186281,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 2ae51b7ea763ef8067b5485b8a3ef45658964df4 (tag: GNOME_CONTROL_CENTER_2_1_2) +commit 2ae51b7ea763ef8067b5485b8a3ef45658964df4 Author: Jody Goldberg Date: Sat Nov 2 19:14:08 2002 +0000 @@ -186523,7 +186633,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit de4daccb66a1ac34b628b3e0e2353c3680ab871c (tag: NAUTILUS_2_1_2, tag: GNOME_CONTROL_CENTER_2_1_1) +commit de4daccb66a1ac34b628b3e0e2353c3680ab871c Author: Jody Goldberg Date: Mon Oct 21 16:48:10 2002 +0000 @@ -186907,7 +187017,7 @@ capplets/file-types/file-types-capplet.c | 27 ++++----------------------- 2 files changed, 12 insertions(+), 23 deletions(-) -commit 69bc347c0fa67ed505a59c6aa14e4a3a94710544 (tag: NAUTILUS_2_1_1) +commit 69bc347c0fa67ed505a59c6aa14e4a3a94710544 Author: Jody Goldberg Date: Thu Oct 3 10:17:40 2002 +0000 @@ -186991,7 +187101,7 @@ po/zh_TW.po | 282 +++--- 72 files changed, 7090 insertions(+), 5280 deletions(-) -commit cd18ba358c5c0de683533b2c7160646bfa66bfd1 (tag: GNOME_CONTROL_CENTER_2_1_0_1) +commit cd18ba358c5c0de683533b2c7160646bfa66bfd1 Author: Jody Goldberg Date: Tue Oct 1 15:18:37 2002 +0000 @@ -187419,7 +187529,7 @@ capplets/keybindings/gnome-keybinding-properties.c | 2 ++ 2 files changed, 6 insertions(+) -commit b3ca0b3f9f2abe9a51066228587c6dd8419ebaf6 (tag: NEW_SIDE_PANE_BRANCHPOINT, tag: NEW_ICON_FACTORY_BRANCHPOINT, tag: NAUTILUS_2_1_0, tag: NAUTILUS_2_0_6, tag: GNOME_CONTROL_CENTER_2_1_0, tag: GNOME_2_0_BRANCHPOINT, origin/new-side-pane-branch, origin/new-icon-factory-branch) +commit b3ca0b3f9f2abe9a51066228587c6dd8419ebaf6 Author: Jody Goldberg Date: Wed Aug 21 06:01:42 2002 +0000 @@ -187998,7 +188108,7 @@ po/tr.po | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) -commit fc7396ec43dd81b47f0b5df4c059b6b059dff971 (tag: XIMIAN_SMB_ANCHOR, tag: NAUTILUS_2_0_4, tag: NAUTILUS_2_0_3, origin/ximian-smb) +commit fc7396ec43dd81b47f0b5df4c059b6b059dff971 Author: jacob berkman Date: Mon Jul 29 15:13:08 2002 +0000 @@ -188266,7 +188376,7 @@ po/ru.po | 431 ++++++++++++++++++++++++++++++++--------------------------- 2 files changed, 235 insertions(+), 200 deletions(-) -commit e681a9f996d6fe2cfed62b615638c3abdc3a5e95 (tag: gnome-2-0-branchpoint) +commit e681a9f996d6fe2cfed62b615638c3abdc3a5e95 Author: Jody Goldberg Date: Thu Jul 18 03:54:36 2002 +0000 @@ -189043,7 +189153,7 @@ capplets/file-types/mime-type-info.c | 14 ++++++++++++-- 3 files changed, 25 insertions(+), 4 deletions(-) -commit 2fe0927aa176f95db978d39044d0449a75ccfa0f (tag: NAUTILUS_2_0_2, tag: NAUTILUS_2_0_1, tag: MULTIHEAD_BRANCHPOINT) +commit 2fe0927aa176f95db978d39044d0449a75ccfa0f Author: Jody Goldberg Date: Wed Jun 26 19:19:46 2002 +0000 @@ -189528,7 +189638,7 @@ po/sl.po | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) -commit 96a33b67f8e3f27289653af0cddbd58636c7c5e2 (tag: gnome-2-0-0) +commit 96a33b67f8e3f27289653af0cddbd58636c7c5e2 Author: Jody Goldberg Date: Mon Jun 17 22:10:21 2002 +0000 @@ -190868,7 +190978,7 @@ capplets/file-types/model-entry.c | 27 ++++++++++++++++----------- 3 files changed, 24 insertions(+), 14 deletions(-) -commit d185c631b217471c712f56841442fc6f29b0f288 (tag: NAUTILUS_2_0_0, origin/gnome-2-0-0) +commit d185c631b217471c712f56841442fc6f29b0f288 Author: Damon Chaplin Date: Fri May 31 19:58:02 2002 +0000 @@ -191552,7 +191662,7 @@ po/no.po | 452 +++++++++++++++++++++++++++++++++-------------------------- 2 files changed, 254 insertions(+), 202 deletions(-) -commit 50b3bfe107f4a444f5ae82ee3cb2d5c997bd68e3 (tag: NAUTILUS_1_1_18) +commit 50b3bfe107f4a444f5ae82ee3cb2d5c997bd68e3 Author: jacob berkman Date: Tue May 21 22:13:38 2002 +0000 @@ -193275,7 +193385,7 @@ po/no.po | 1679 ++-------------------------------------------------------- 2 files changed, 47 insertions(+), 1636 deletions(-) -commit 2083507b39500d5f57da27af73e30f9a3e727a32 (tag: GNOME_CONTROL_CENTER_1_99_10) +commit 2083507b39500d5f57da27af73e30f9a3e727a32 Author: Rachel Hestilow Date: Mon May 6 22:38:24 2002 +0000 @@ -193740,7 +193850,7 @@ capplets/theme-switcher/theme-switcher.c | 187 +++++++++- 3 files changed, 634 insertions(+), 37 deletions(-) -commit 9084c2eb25d38f578e6ae2deb9a42d0129d52308 (tag: GNOME_CONTROL_CENTER_1_99_8) +commit 9084c2eb25d38f578e6ae2deb9a42d0129d52308 Author: Rachel Hestilow Date: Mon Apr 29 20:14:17 2002 +0000 @@ -194538,7 +194648,7 @@ capplets/common/gconf-property-editor.h | 3 +++ 3 files changed, 34 insertions(+), 16 deletions(-) -commit df131cfc67a9ce9577da2f3d7090b3fccd82958b (tag: GNOME_CONTROL_CENTER_1_99_7) +commit df131cfc67a9ce9577da2f3d7090b3fccd82958b Author: Kwok-Koon Cheung Date: Sun Apr 21 22:49:46 2002 +0000 @@ -194548,7 +194658,7 @@ po/zh_TW.po | 892 ++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 827 insertions(+), 69 deletions(-) -commit d4e62871162ddfe874f726df6dde64038189ff8c (tag: NAUTILUS_1_1_14, tag: NAUTILUS_1_1_13, tag: METATHEME_0_9_7) +commit d4e62871162ddfe874f726df6dde64038189ff8c Author: Rachel Hestilow Date: Sun Apr 21 21:22:35 2002 +0000 @@ -195163,7 +195273,7 @@ gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 10 ++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) -commit 64a0eee1341f138010718266ef94b200a5cab48d (tag: NAUTILUS_1_1_12) +commit 64a0eee1341f138010718266ef94b200a5cab48d Author: jacob berkman Date: Thu Apr 11 19:13:49 2002 +0000 @@ -196179,7 +196289,7 @@ .../gnome-settings-accessibility-keyboard.c | 28 +++++++++++++--------- 2 files changed, 26 insertions(+), 11 deletions(-) -commit 454800152e51d7136bce4b3c5524d5df11dafd9c (tag: XIMIAN_SUN_DELIVERY_1_MERGE) +commit 454800152e51d7136bce4b3c5524d5df11dafd9c Author: Richard Hestilow Date: Fri Mar 29 05:15:05 2002 +0000 @@ -196576,7 +196686,7 @@ configure.in | 1 + 2 files changed, 6 insertions(+) -commit 8f172b308da49530f3b365c5e6c4ee58ce9e5c69 (tag: METATHEME_0_9_5) +commit 8f172b308da49530f3b365c5e6c4ee58ce9e5c69 Author: Dave Camp Date: Tue Mar 26 18:53:49 2002 +0000 @@ -196778,7 +196888,7 @@ po/no.po | 137 +++++++++++++++++++++++++---------------------------------- 2 files changed, 63 insertions(+), 78 deletions(-) -commit 1cb06ddba20274f1a9b8054056d5369e6b45f6e2 (tag: GNOME_CONTROL_CENTER_1_99_5) +commit 1cb06ddba20274f1a9b8054056d5369e6b45f6e2 Author: Jonathan Blandford Date: Mon Mar 25 06:09:43 2002 +0000 @@ -197111,7 +197221,7 @@ po/fi.po | 531 ++++++++++++++++++++++++++++++++++++++++++----------------- 2 files changed, 383 insertions(+), 152 deletions(-) -commit 6b0ec1bccc84f444278df0b4c486048af0e48442 (tag: NAUTILUS_1_1_11) +commit 6b0ec1bccc84f444278df0b4c486048af0e48442 Author: Anders Carlsson Date: Wed Mar 20 14:31:58 2002 +0000 @@ -197404,7 +197514,7 @@ help/xmldocs.make | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) -commit 6eff67c9f5a1d3a1a9d93d8777451f0dd39a5f17 (tag: NAUTILUS_1_1_10) +commit 6eff67c9f5a1d3a1a9d93d8777451f0dd39a5f17 Author: Darin Adler Date: Sun Mar 17 18:25:35 2002 +0000 @@ -197956,7 +198066,7 @@ po/sl.po | 125 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 63 insertions(+), 62 deletions(-) -commit 0335c74339ba706543b47eadf5800ebbd8abd99b (tag: NAUTILUS_1_1_9) +commit 0335c74339ba706543b47eadf5800ebbd8abd99b Author: Lauris Kaplinski Date: Sun Mar 10 15:04:22 2002 +0000 @@ -198461,7 +198571,7 @@ gnome-settings-daemon/gnome-settings-wm.h | 33 ++++++++++ 5 files changed, 139 insertions(+), 4 deletions(-) -commit d4d99fea714ef972d2684df9f6198f8bb51c34b4 (tag: NAUTILUS_1_1_8) +commit d4d99fea714ef972d2684df9f6198f8bb51c34b4 Author: Alexander Larsson Date: Mon Mar 4 04:06:48 2002 +0000 @@ -198929,7 +199039,7 @@ po/da.po | 184 +++++++++++++++++++++++++++++++++++++++++------------------ 2 files changed, 132 insertions(+), 56 deletions(-) -commit bc353d83350ccb8c01d26b2b4601e231e813749f (tag: NAUTILUS_1_1_6, tag: NAUTILUS_1_1_5) +commit bc353d83350ccb8c01d26b2b4601e231e813749f Author: Richard Hestilow Date: Sat Feb 23 04:42:10 2002 +0000 @@ -200384,7 +200494,7 @@ po/POTFILES.in | 1 - 25 files changed, 2087 insertions(+), 721 deletions(-) -commit 788e46daacc36681eac4214f5c220a759db87430 (tag: GNOME_CONTROL_CENTER_1_99_2_REALLY) +commit 788e46daacc36681eac4214f5c220a759db87430 Author: Richard Hestilow Date: Tue Jan 29 04:33:41 2002 +0000 @@ -200461,7 +200571,7 @@ .../ui-properties/toolbar-menu-properties.glade | 374 +++++++++++++++ 5 files changed, 1025 insertions(+), 6 deletions(-) -commit b1ee65a8ef1a6839f574323cb1d1e9c019f23b95 (tag: GNOME_CONTROL_CENTER_1_99_2) +commit b1ee65a8ef1a6839f574323cb1d1e9c019f23b95 Author: Richard Hestilow Date: Tue Jan 29 01:13:34 2002 +0000 @@ -200576,7 +200686,7 @@ capplets/theme-switcher/main.c | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) -commit e7be78a1bd062745f0d10aafcddd3fcc41811858 (tag: METATHEME_0_9_1) +commit e7be78a1bd062745f0d10aafcddd3fcc41811858 Author: Richard Hestilow Date: Mon Jan 28 22:40:28 2002 +0000 @@ -205776,7 +205886,7 @@ capplets/screensaver/selection-dialog.h | 2 +- 21 files changed, 1145 insertions(+), 1067 deletions(-) -commit bafad73d36ebc9e5abb3ebb9f1376cc6db7b9ba9 (origin/gnome-1-4) +commit bafad73d36ebc9e5abb3ebb9f1376cc6db7b9ba9 Author: Christian Meyer Date: Sat Dec 1 01:40:14 2001 +0000 @@ -206361,7 +206471,7 @@ capplets/common/capplet-util.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) -commit 534754d3f343a5edfffd8398625ccff0c27ee897 (tag: CONTROL_CENTER_PLUS_1_5_11) +commit 534754d3f343a5edfffd8398625ccff0c27ee897 Author: Bradford Hovinen Date: Thu Oct 18 13:03:05 2001 +0000 @@ -206628,7 +206738,7 @@ capplets/background/applier.c | 86 +++++++++++----------- 3 files changed, 58 insertions(+), 44 deletions(-) -commit c06567a544c094fbe7dc77d89c1d64b6dde567ee (tag: GNOME_CONTROL_CENTER_1_5_10) +commit c06567a544c094fbe7dc77d89c1d64b6dde567ee Author: Israel Escalante Date: Fri Oct 12 02:37:55 2001 +0000 @@ -206642,7 +206752,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 9e1a0b95480dca173907e7fe05acb6ff1b01a1e8 (tag: GNOME_CONTROL_CENTER_1_5_9) +commit 9e1a0b95480dca173907e7fe05acb6ff1b01a1e8 Author: Israel Escalante Date: Thu Oct 11 22:23:22 2001 +0000 @@ -206733,7 +206843,7 @@ file intro.xml.in was initially added on branch INTRO_PAGE_BRANCH. -commit cb870464b44a0eec989ddc1955eb049c5df3624a (tag: INTRO_PAGE_ANCHOR) +commit cb870464b44a0eec989ddc1955eb049c5df3624a Author: Shaun Merrigan Date: Fri Oct 5 10:14:05 2001 +0000 @@ -206757,7 +206867,7 @@ po/ca.po | 207 +++++++++++++++++++++++++++------------------------------------ 1 file changed, 87 insertions(+), 120 deletions(-) -commit 2294aef748e3f8b0a99aa7832138991aadb6934c (tag: GNOME_CONTROL_CENTER_1_5_8) +commit 2294aef748e3f8b0a99aa7832138991aadb6934c Author: Israel Escalante Date: Mon Oct 1 22:05:26 2001 +0000 @@ -207799,7 +207909,7 @@ po/zh_TW.po | 21 +++++++++++++++------ 2 files changed, 19 insertions(+), 6 deletions(-) -commit aa885c400bd6009b7427b2b1bd3917485f4e2f25 (tag: CONTROL_CENTER_PLUS_1_5_8) +commit aa885c400bd6009b7427b2b1bd3917485f4e2f25 Author: Kwok-Koon Cheung Date: Tue Sep 4 20:08:49 2001 +0000 @@ -207818,7 +207928,7 @@ po/ChangeLog | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) -commit 1d03bbd1c5c55c158a240c6bec52e5075d1b4ebb (tag: GNOME_CONTROL_CENTER_1_5_7) +commit 1d03bbd1c5c55c158a240c6bec52e5075d1b4ebb Author: Bradford Hovinen Date: Tue Sep 4 13:43:48 2001 +0000 @@ -208034,7 +208144,7 @@ po/zh_TW.po | 4 +- 33 files changed, 29189 insertions(+), 6373 deletions(-) -commit 8b63aee5603c199e007f7dbf6eb8232b039fc3c0 (tag: GNOME_CONTROL_CENTER_1_5_6) +commit 8b63aee5603c199e007f7dbf6eb8232b039fc3c0 Author: Bradford Hovinen Date: Thu Aug 23 20:10:14 2001 +0000 @@ -208493,7 +208603,7 @@ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) -commit 5890f11b77526676e861b6387e915970e4e2a8e9 (tag: GNOME_CONTROL_CENTER_1_5_5) +commit 5890f11b77526676e861b6387e915970e4e2a8e9 Author: Richard Hestilow Date: Fri Aug 10 18:42:41 2001 +0000 @@ -209121,7 +209231,7 @@ archiver/location.h | 2 ++ 3 files changed, 19 insertions(+) -commit e31a59e98aa468b24d5e94a5a7c4365c6267fb7c (tag: GNOME_CONTROL_CENTER_1_5_4) +commit e31a59e98aa468b24d5e94a5a7c4365c6267fb7c Author: Bradford Hovinen Date: Mon Jul 30 18:47:34 2001 +0000 @@ -209319,7 +209429,7 @@ po/pl.po | 857 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 433 insertions(+), 428 deletions(-) -commit 2087f846f075da028927e2a16fa1ed7292390b97 (tag: GNOME_CONTROL_CENTER_1_5_3) +commit 2087f846f075da028927e2a16fa1ed7292390b97 Author: Bradford Hovinen (Gdict maintainer) Date: Fri Jul 27 22:23:44 2001 +0000 @@ -209510,7 +209620,7 @@ capplets/mouse/mouse-properties.xml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) -commit 33b38091152a3fb64c076157d9f0b1691e784dca (tag: GNOME_CONTROL_CENTER_1_5_2, tag: CONTROL_CENTER_PLUS_1_5_5, tag: CONTROL_CENTER_PLUS_1_5_4, tag: CONTROL_CENTER_PLUS_1_5_2) +commit 33b38091152a3fb64c076157d9f0b1691e784dca Author: Bradford Hovinen Date: Fri Jul 27 16:02:08 2001 +0000 @@ -210344,7 +210454,7 @@ control-center/main.c | 10 + 28 files changed, 1642 insertions(+), 407 deletions(-) -commit 429b2504b37ef77b5465bde578fb272499d40994 (tag: CONTROL_CENTER_1_5_1_, origin/CONTROL_CENTER_1_5_X_CHEMA) +commit 429b2504b37ef77b5465bde578fb272499d40994 Author: Jose Maria Celorio Date: Wed Jul 25 10:30:52 2001 +0000 @@ -210363,7 +210473,7 @@ po/uk.po | 331 ++++++++++++++-------- 11 files changed, 2667 insertions(+), 1657 deletions(-) -commit 826f131709fc960272ebe2a793f8924131dcd9e5 (tag: CONTROL_CENTER_1_5_1) +commit 826f131709fc960272ebe2a793f8924131dcd9e5 Author: Jose Maria Celorio Date: Wed Jul 25 10:03:13 2001 +0000 @@ -210412,7 +210522,7 @@ capplets/screensaver/preview.c | 15 +++++++++++++++ 5 files changed, 31 insertions(+), 3 deletions(-) -commit 533a27306774b03d66c728bbac9f055d06c477f4 (tag: CONTROL_CENTER_PLUS_1_5_1) +commit 533a27306774b03d66c728bbac9f055d06c477f4 Author: Jose Maria Celorio Date: Wed Jul 25 09:15:39 2001 +0000 @@ -211309,7 +211419,7 @@ po/sk.po | 1224 +++++----------------------------------------------------- 2 files changed, 102 insertions(+), 1126 deletions(-) -commit 0ae3d29c91f23c025d0557332c94d9fa287f2b2e (tag: CONTROL_CENTER_PLUS_1_5_0, tag: CONTROL_CENTER_1_5_0) +commit 0ae3d29c91f23c025d0557332c94d9fa287f2b2e Author: Jose Maria Celorio Date: Fri Jul 20 09:49:49 2001 +0000 @@ -214740,7 +214850,7 @@ archiver/location.h | 4 +-- 4 files changed, 81 insertions(+), 39 deletions(-) -commit 47d682e446d646090ff65328e847a9438af5b3a1 (tag: XST_0_6_1) +commit 47d682e446d646090ff65328e847a9438af5b3a1 Author: Bradford Hovinen Date: Thu Jun 21 21:48:12 2001 +0000 @@ -215065,7 +215175,7 @@ archiver/location.c | 14 +++++++++++++- 3 files changed, 21 insertions(+), 3 deletions(-) -commit c7af228de9fddb4923fc42dcb60262ab55b28339 (origin/GCONF_BRANCH2) +commit c7af228de9fddb4923fc42dcb60262ab55b28339 Author: Bradford Hovinen Date: Mon Jun 18 16:44:33 2001 +0000 @@ -215195,7 +215305,7 @@ archiver/Makefile.am | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) -commit d8c177553ddd9a750483e898d26bad91b414dc09 (tag: XST_0_5_1, tag: XST_0_5_0) +commit d8c177553ddd9a750483e898d26bad91b414dc09 Author: Chema Celorio Date: Fri May 25 01:19:21 2001 +0000 @@ -215373,7 +215483,7 @@ archiver/location.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) -commit 87078db3c51b81fe3d1f17847512c752319b73bc (tag: XST_0_4_1, tag: XST_0_4_0, tag: START_PERLCC, origin/PERLCC) +commit 87078db3c51b81fe3d1f17847512c752319b73bc Author: Arturo Espinosa Aldama Date: Wed May 9 18:26:50 2001 +0000 @@ -215462,7 +215572,7 @@ capplets/screensaver/screensavers/xroger.xml | 2 +- 37 files changed, 40 insertions(+), 35 deletions(-) -commit eba544a0917e29e375b7609e49fd101cd4a937db (tag: GNOME_MEDIA_1_2_2) +commit eba544a0917e29e375b7609e49fd101cd4a937db Author: Bradford Hovinen Date: Sat May 5 14:19:03 2001 +0000 @@ -216195,7 +216305,7 @@ file theme-selector.desktop.in was initially added on branch control-center-1-0. -commit e7d9f82a0f48921d9ead9da0a584466d43dc11df (tag: GNOME-VFS_1_0_ANCHOR, tag: CONTROL_CENTER_1_4_0, tag: CONTROL_CENTER_1_0_ANCHOR, origin/gnome-vfs-1-0) +commit e7d9f82a0f48921d9ead9da0a584466d43dc11df Author: Darin Adler Date: Tue Mar 6 23:33:19 2001 +0000 @@ -216298,7 +216408,7 @@ file files-types-capplet.desktop was initially added on branch gnome-vfs-1. -commit 737118953bd170331dc02b2a2803360ccb622e09 (tag: XST_0_3_0) +commit 737118953bd170331dc02b2a2803360ccb622e09 Author: Bradford Hovinen Date: Tue Feb 20 15:37:48 2001 +0000 @@ -216566,7 +216676,7 @@ po/ru.po | 1679 +++++++++++++++++++++++++++++++++++++++++++++++----------- 2 files changed, 1359 insertions(+), 324 deletions(-) -commit 62298b5b05774676ca157c4876944cc138aaf782 (tag: GNOME-VFS_1_ANCHOR) +commit 62298b5b05774676ca157c4876944cc138aaf782 Author: Gene Z. Ragan Date: Tue Feb 6 21:24:42 2001 +0000 @@ -217498,7 +217608,7 @@ po/el.po | 1668 +++++++++++++++++++++++++++++++++++++++++++++++----------- 2 files changed, 1363 insertions(+), 309 deletions(-) -commit d9678e6f234a138d993ae5ee3a5d79bb759cf2f5 (tag: GNOME-VFS_PRE_0_5, tag: GNOME-VFS_0_5) +commit d9678e6f234a138d993ae5ee3a5d79bb759cf2f5 Author: Gene Z. Ragan Date: Sat Jan 13 05:07:31 2001 +0000 @@ -218988,7 +219098,7 @@ po/da.po | 1048 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 678 insertions(+), 370 deletions(-) -commit 7dde3219d144641903935da2ce466508fc0e587a (tag: GNOME-VFS_0_4_2_CANDIDATE, tag: GNOME-VFS_0_4_2, tag: GNOME-VFS_0_4_1, tag: GNOME-VFS_0_4) +commit 7dde3219d144641903935da2ce466508fc0e587a Author: Gene Z. Ragan Date: Thu Nov 2 22:34:42 2000 +0000 @@ -219642,7 +219752,7 @@ po/de.po | 611 ++++++++++++++++++++++++++++------------------------------- 2 files changed, 294 insertions(+), 321 deletions(-) -commit e5c0852368bb30594c1ce0cdd484c9bc023e4047 (tag: CONTROL_CENTER_1_3_1) +commit e5c0852368bb30594c1ce0cdd484c9bc023e4047 Author: Bradford Hovinen Date: Sun Oct 8 22:53:44 2000 +0000 @@ -219998,7 +220108,7 @@ capplets/file-types/nautilus-mime-type.desktop | 2 ++ 1 file changed, 2 insertions(+) -commit 3140f7a9594d613013eb848e47586a330fd6e6ce (tag: GNOME_PRINT_0_24) +commit 3140f7a9594d613013eb848e47586a330fd6e6ce Author: Christian Meyer Date: Tue Sep 26 11:55:48 2000 +0000 @@ -221424,7 +221534,7 @@ capplets/file-types/file-types-capplet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 2a9d7416f59e92e5a91b96522258aa58637ceb1b (tag: EAZEL-NAUTILUS-MS-AUG07) +commit 2a9d7416f59e92e5a91b96522258aa58637ceb1b Author: Robin Slomkowski Date: Tue Aug 8 21:34:56 2000 +0000 @@ -221630,7 +221740,7 @@ MAINTAINERS | 1 + 1 file changed, 1 insertion(+) -commit f515abc9a881f82c498f770646b299ca7d811e56 (tag: EAZEL_NAUTILUS_DEMO_2_ANCHOR) +commit f515abc9a881f82c498f770646b299ca7d811e56 Author: Gene Z. Ragan Date: Wed Aug 2 22:10:17 2000 +0000 @@ -222006,7 +222116,7 @@ capplets/file-types/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 32577cacec3ddfa94c777d3d92978c2e042c4057 (tag: EAZEL-NAUTILUS-MS-JULY_5) +commit 32577cacec3ddfa94c777d3d92978c2e042c4057 Author: Gene Z. Ragan Date: Wed Jul 5 04:35:04 2000 +0000 @@ -222055,7 +222165,7 @@ capplets/file-types/file-types-capplet.h | 2 +- 4 files changed, 313 insertions(+), 207 deletions(-) -commit b3b5ced6ce0bc2940ade7213b16dcbfd356786f1 (tag: GNOME-VFS_0_2-ANCHOR, tag: GNOME-VFS_0_2, origin/gnome-vfs-0-2) +commit b3b5ced6ce0bc2940ade7213b16dcbfd356786f1 Author: Eskil Heyn Olsen Date: Mon Jul 3 22:18:15 2000 +0000 @@ -222720,7 +222830,7 @@ capplets/file-types/mime-data.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) -commit 81136fedf199ab9707024790667fb9781097adfa (tag: nautilus_ms_may_31) +commit 81136fedf199ab9707024790667fb9781097adfa Author: Darin Adler Date: Mon Jun 5 18:20:57 2000 +0000 @@ -223929,7 +224039,7 @@ po/ru.po | 112 ++++++++++++++++++++++++++++++++++++++++------------------- 2 files changed, 80 insertions(+), 36 deletions(-) -commit bc8dddc9ac93df295eba31ffcaad5afa803d9e18 (tag: CONTROL_CENTER_1_0_51) +commit bc8dddc9ac93df295eba31ffcaad5afa803d9e18 Author: Jonathan Blandford Date: Tue Oct 5 20:15:57 1999 +0000 @@ -224195,7 +224305,7 @@ po/ja.po | 63 +++++++++++++++++++++++++++++++++--------------------------- 2 files changed, 39 insertions(+), 28 deletions(-) -commit 52b93bbc84613cd9d4230dd32df7971e626c8273 (tag: CONTROL_CENTER_1_0_50) +commit 52b93bbc84613cd9d4230dd32df7971e626c8273 Author: Jonathan Blandford Date: Tue Sep 28 23:18:02 1999 +0000 @@ -224355,7 +224465,7 @@ ChangeLog | 4 ++++ 2 files changed, 5 insertions(+) -commit 72c13e8af062909c141ecc64a85ec64b2d03bcbf (tag: CONTROL_CENTER_1_0_40) +commit 72c13e8af062909c141ecc64a85ec64b2d03bcbf Author: Jonathan Blandford Date: Mon Sep 20 23:54:26 1999 +0000 @@ -224886,7 +224996,7 @@ po/ru.po | 368 ++++++++++++++++++----------------------------------------- 2 files changed, 118 insertions(+), 254 deletions(-) -commit 1e999e12d3855256fb91dafe1b53d1cea7342ccb (tag: CONTROL_CENTER_1_0_6) +commit 1e999e12d3855256fb91dafe1b53d1cea7342ccb Author: Jonathan Blandford Date: Tue Aug 17 18:22:29 1999 +0000 @@ -225389,7 +225499,7 @@ po/fr.po | 624 ++++++++++++++++++++++++++++++++--------------------------- 2 files changed, 343 insertions(+), 285 deletions(-) -commit b2c0d27ce266486837ed4c09be432473b4a6de76 (tag: GGV_0_61, tag: GGV_0_50) +commit b2c0d27ce266486837ed4c09be432473b4a6de76 Author: Kjartan Maraas Date: Sun Jul 18 08:41:44 1999 +0000 @@ -226289,7 +226399,7 @@ po/hu.po | 1172 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 1109 insertions(+), 63 deletions(-) -commit 1e88e5780350833b2e98c72472563cb6d2f56f11 (tag: FOR_PANEL) +commit 1e88e5780350833b2e98c72472563cb6d2f56f11 Author: Kjartan Maraas Date: Mon Apr 5 22:32:59 1999 +0000 @@ -226379,7 +226489,7 @@ po/es.po | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) -commit 4f33c3658b3319df3fb8ccb437131ea6e3811c28 (tag: CONTROL_CENTER_1_0_5) +commit 4f33c3658b3319df3fb8ccb437131ea6e3811c28 Author: Jonathan Blandford Date: Fri Apr 2 00:07:19 1999 +0000 @@ -226669,7 +226779,7 @@ po/es.po | 129 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 58 insertions(+), 71 deletions(-) -commit be48aba8d714e5364f4530b5b853b837a56c76c7 (tag: CONTROL_CENTER_1_0_4) +commit be48aba8d714e5364f4530b5b853b837a56c76c7 Author: Jonathan Blandford Date: Mon Mar 22 17:12:56 1999 +0000 @@ -226846,7 +226956,7 @@ po/sv.po | 34 ++++--- 24 files changed, 473 insertions(+), 244 deletions(-) -commit 14049208d884171325402adab78780b08ead05fb (origin/GNOME_CLIENT_LIST) +commit 14049208d884171325402adab78780b08ead05fb Author: Owen Taylor Date: Sun Mar 14 22:26:36 1999 +0000 @@ -227061,7 +227171,7 @@ ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) -commit 9963e978792ac427fbf0be76ba230664f9587ad1 (tag: CONTROL_CENTER_1_0_2) +commit 9963e978792ac427fbf0be76ba230664f9587ad1 Author: Jonathan Blandford Date: Wed Mar 10 00:27:13 1999 +0000 @@ -227161,7 +227271,7 @@ po/hu.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -commit 9a0eb80c5eeb9236f4f37ca31e38cd072c091a98 (tag: CONTROL_CENTER_1_0_1) +commit 9a0eb80c5eeb9236f4f37ca31e38cd072c091a98 Author: Elliot Lee Date: Mon Mar 1 21:52:12 1999 +0000 @@ -227222,7 +227332,7 @@ po/ko.po | 52 +++++++++++++++++++++------------------------------- 1 file changed, 21 insertions(+), 31 deletions(-) -commit 8a31fccdd0c95c2c01fc9db75f90cb9ff92bda6a (tag: V1_0_0_1) +commit 8a31fccdd0c95c2c01fc9db75f90cb9ff92bda6a Author: Elliot Lee Date: Sun Feb 28 22:37:37 1999 +0000 @@ -228416,7 +228526,7 @@ po/ru.po | 203 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 102 insertions(+), 101 deletions(-) -commit 81a80bbb7067b302db037073db2fa7cbc5f7fa41 (tag: SM_BROKEN) +commit 81a80bbb7067b302db037073db2fa7cbc5f7fa41 Author: Arturo Espinosa Date: Sat Jan 9 01:41:01 1999 +0000 @@ -230083,7 +230193,7 @@ po/pt.po | 1436 +++++++++++++++--------- 3 files changed, 893 insertions(+), 560 deletions(-) -commit 2007e09506cfed3067557e9fd30ad3d4ff13131e (tag: PANTING_CHIMPANZEE, tag: GNOME_0_30) +commit 2007e09506cfed3067557e9fd30ad3d4ff13131e Author: Arturo Espinosa Date: Thu Sep 24 01:32:12 1998 +0000 @@ -230610,7 +230720,7 @@ po/no.po | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) -commit 7bbd01adad7f89b320a65e3965ff03b0070b5f42 (tag: GNOME_0_28_MARTIN) +commit 7bbd01adad7f89b320a65e3965ff03b0070b5f42 Author: Raja R Harinath Date: Wed Aug 19 16:55:35 1998 +0000 @@ -230948,7 +231058,7 @@ po/sv.po | 501 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 194 insertions(+), 307 deletions(-) -commit 483d6078ceb5d4f7cd0568170f6a5048d9f74fa3 (tag: GNOME_0_27) +commit 483d6078ceb5d4f7cd0568170f6a5048d9f74fa3 Author: Jonathan Blandford Date: Tue Aug 11 03:18:37 1998 +0000 @@ -230990,7 +231100,7 @@ po/es.po | 1400 ++++++++++++++++++++++++++------------------------------ 2 files changed, 667 insertions(+), 749 deletions(-) -commit d629c525db7902ff28f80bfbdfb1e74a6b8f9b5d (tag: GNOME_0_25, tag: DROOLING_MACAQUE) +commit d629c525db7902ff28f80bfbdfb1e74a6b8f9b5d Author: Arturo Espinosa Date: Wed Aug 5 23:34:23 1998 +0000 @@ -231802,7 +231912,7 @@ po/POTFILES.in | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) -commit c67d0c2cdeab0b259cc31db003d1520f54d35dae (tag: GNOME_0_20a) +commit c67d0c2cdeab0b259cc31db003d1520f54d35dae Author: Arturo Espinosa Date: Fri Jun 5 01:47:42 1998 +0000 @@ -231811,7 +231921,7 @@ configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 75c240f9ea0458a502370f6230bef8f5c72bd45a (tag: GNOME_0_20) +commit 75c240f9ea0458a502370f6230bef8f5c72bd45a Author: Robert Norris Date: Mon Jun 1 00:15:14 1998 +0000 diff -Nru gnome-control-center-3.24.1/config.guess gnome-control-center-3.24.2/config.guess --- gnome-control-center-3.24.1/config.guess 2017-04-12 09:32:52.000000000 +0000 +++ gnome-control-center-3.24.2/config.guess 2017-05-10 08:12:01.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2016-10-02' +timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -168,29 +168,19 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - /sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; - earmv*) - arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` - machine=${arch}${endian}-unknown - ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently (or will in the future) and ABI. + # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in - earm*) - os=netbsdelf - ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -207,13 +197,6 @@ os=netbsd ;; esac - # Determine ABI tags. - case "${UNAME_MACHINE_ARCH}" in - earm*) - expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` - ;; - esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need @@ -224,13 +207,13 @@ release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}${abi}" + echo "${machine}-${os}${release}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` @@ -240,10 +223,6 @@ UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; - *:LibertyBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE} - exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; @@ -256,9 +235,6 @@ *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; - *:Sortix:*:*) - echo ${UNAME_MACHINE}-unknown-sortix - exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -275,42 +251,42 @@ ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "EV5 (21164)") - UNAME_MACHINE=alphaev5 ;; + UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") - UNAME_MACHINE=alphaev56 ;; + UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") - UNAME_MACHINE=alphapca56 ;; + UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") - UNAME_MACHINE=alphapca57 ;; + UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") - UNAME_MACHINE=alphaev6 ;; + UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") - UNAME_MACHINE=alphaev67 ;; + UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE=alphaev69 ;; + UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") - UNAME_MACHINE=alphaev7 ;; + UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") - UNAME_MACHINE=alphaev79 ;; + UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 @@ -383,16 +359,16 @@ exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build - SUN_ARCH=i386 + SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH=x86_64 + SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` @@ -417,7 +393,7 @@ exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3 + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} @@ -642,13 +618,13 @@ sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in - 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 - 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in - 32) HP_ARCH=hppa2.0n ;; - 64) HP_ARCH=hppa2.0w ;; - '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi @@ -687,11 +663,11 @@ exit (0); } EOF - (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = hppa2.0w ] + if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build @@ -704,12 +680,12 @@ # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH=hppa2.0w + HP_ARCH="hppa2.0w" else - HP_ARCH=hppa64 + HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} @@ -814,14 +790,14 @@ echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) @@ -903,7 +879,7 @@ exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix @@ -926,7 +902,7 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) @@ -957,9 +933,6 @@ crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; - e2k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; @@ -972,9 +945,6 @@ ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - k1om:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; @@ -1000,9 +970,6 @@ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - mips64el:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; @@ -1035,9 +1002,6 @@ ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; - riscv32:Linux:*:* | riscv64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; @@ -1057,7 +1021,7 @@ echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} @@ -1136,7 +1100,7 @@ # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configure will decide that + # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; @@ -1285,9 +1249,6 @@ SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; - SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux${UNAME_RELEASE} - exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; @@ -1301,9 +1262,9 @@ UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in @@ -1325,7 +1286,7 @@ exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = x86; then + if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi @@ -1356,7 +1317,7 @@ # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. - if test "$cputype" = 386; then + if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" @@ -1398,7 +1359,7 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'` + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos @@ -1409,25 +1370,23 @@ x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; - amd64:Isilon\ OneFS:*:*) - echo x86_64-unknown-onefs - exit ;; esac cat >&2 < in order to provide the needed +information to handle your system. config.guess timestamp = $timestamp diff -Nru gnome-control-center-3.24.1/config.sub gnome-control-center-3.24.2/config.sub --- gnome-control-center-3.24.1/config.sub 2017-04-12 09:32:52.000000000 +0000 +++ gnome-control-center-3.24.2/config.sub 2017-05-10 08:12:01.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2016-09-05' +timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -33,7 +33,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -53,7 +53,8 @@ me=`echo "$0" | sed -e 's,.*/,,'` usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS Canonicalize a configuration name. @@ -67,7 +68,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -116,8 +117,8 @@ case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ - kopensolaris*-gnu* | cloudabi*-eabi* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` @@ -254,12 +255,11 @@ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ - | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ - | e2k | epiphany \ + | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ @@ -305,7 +305,7 @@ | riscv32 | riscv64 \ | rl78 | rx \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -376,13 +376,12 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ - | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ - | e2k-* | elxsi-* \ + | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ @@ -429,13 +428,12 @@ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ - | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ @@ -520,9 +518,6 @@ basic_machine=i386-pc os=-aros ;; - asmjs) - basic_machine=asmjs-unknown - ;; aux) basic_machine=m68k-apple os=-aux @@ -643,14 +638,6 @@ basic_machine=m68k-bull os=-sysv3 ;; - e500v[12]) - basic_machine=powerpc-unknown - os=$os"spe" - ;; - e500v[12]-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - os=$os"spe" - ;; ebmon29k) basic_machine=a29k-amd os=-ebmon @@ -1030,7 +1017,7 @@ ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - ppcle | powerpclittle) + ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) @@ -1040,7 +1027,7 @@ ;; ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - ppc64le | powerpc64little) + ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) @@ -1386,18 +1373,18 @@ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* | -cloudabi* | -sortix* \ + | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ @@ -1406,8 +1393,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ - | -onefs* | -tirtos* | -phoenix*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1539,8 +1525,6 @@ ;; -nacl*) ;; - -ios) - ;; -none) ;; *) diff -Nru gnome-control-center-3.24.1/configure gnome-control-center-3.24.2/configure --- gnome-control-center-3.24.1/configure 2017-04-12 09:32:51.000000000 +0000 +++ gnome-control-center-3.24.2/configure 2017-05-10 08:12:00.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gnome-control-center 3.24.1. +# Generated by GNU Autoconf 2.69 for gnome-control-center 3.24.2. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='gnome-control-center' PACKAGE_TARNAME='gnome-control-center' -PACKAGE_VERSION='3.24.1' -PACKAGE_STRING='gnome-control-center 3.24.1' +PACKAGE_VERSION='3.24.2' +PACKAGE_STRING='gnome-control-center 3.24.2' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-control-center' PACKAGE_URL='' @@ -1581,7 +1581,7 @@ # 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 gnome-control-center 3.24.1 to adapt to many kinds of systems. +\`configure' configures gnome-control-center 3.24.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1656,7 +1656,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gnome-control-center 3.24.1:";; + short | recursive ) echo "Configuration of gnome-control-center 3.24.2:";; esac cat <<\_ACEOF @@ -1669,7 +1669,8 @@ --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer - --enable-debug[=no] compile with debugging; one of yes/info/profile/no + --enable-debug=[yes/info/profile/no] + compile with debugging --enable-compile-warnings=[no/minimum/yes/maximum/error] Turn on compiler warnings --enable-dependency-tracking @@ -1915,7 +1916,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gnome-control-center configure 3.24.1 +gnome-control-center configure 3.24.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2284,7 +2285,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gnome-control-center $as_me 3.24.1, which was +It was created by gnome-control-center $as_me 3.24.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3153,7 +3154,7 @@ # Define the identity of the package. PACKAGE='gnome-control-center' - VERSION='3.24.1' + VERSION='3.24.2' cat >>confdefs.h <<_ACEOF @@ -3431,6 +3432,13 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable debugging" >&5 $as_echo_n "checking whether to enable debugging... " >&6; } + ax_enable_debug_default=no + ax_enable_debug_is_release=$ax_is_release + + # If this is a release, override the default. + if test "$ax_enable_debug_is_release" = "yes"; then : + ax_enable_debug_default="no" +fi @@ -3439,63 +3447,79 @@ if test "${enable_debug+set}" = set; then : enableval=$enable_debug; else - enable_debug=no + enable_debug=$ax_enable_debug_default fi - if test "x$enable_debug" = "xyes" || test "x$enable_debug" = "x"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - CFLAGS="${CFLAGS} -g -O0" - CXXFLAGS="${CXXFLAGS} -g -O0" - FFLAGS="${FFLAGS} -g -O0" - FCFLAGS="${FCFLAGS} -g -O0" - OBJCFLAGS="${OBJCFLAGS} -g -O0" + # empty mean debug yes + if test "x$enable_debug" = "x"; then : + enable_debug="yes" +fi -$as_echo "#define GNOME_ENABLE_DEBUG /**/" >>confdefs.h + # case of debug + case $enable_debug in #( + yes) : - else - if test "x$enable_debug" = "xinfo"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: info" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="${CFLAGS} -g -O0" + CXXFLAGS="${CXXFLAGS} -g -O0" + FFLAGS="${FFLAGS} -g -O0" + FCFLAGS="${FCFLAGS} -g -O0" + OBJCFLAGS="${OBJCFLAGS} -g -O0" + ;; #( + info) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: info" >&5 $as_echo "info" >&6; } - CFLAGS="${CFLAGS} -g" - CXXFLAGS="${CXXFLAGS} -g" - FFLAGS="${FFLAGS} -g" - FCFLAGS="${FCFLAGS} -g" - OBJCFLAGS="${OBJCFLAGS} -g" - elif test "x$enable_debug" = "xprofile"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: profile" >&5 + CFLAGS="${CFLAGS} -g" + CXXFLAGS="${CXXFLAGS} -g" + FFLAGS="${FFLAGS} -g" + FCFLAGS="${FCFLAGS} -g" + OBJCFLAGS="${OBJCFLAGS} -g" + ;; #( + profile) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: profile" >&5 $as_echo "profile" >&6; } - CFLAGS="${CFLAGS} -g -pg" - CXXFLAGS="${CXXFLAGS} -g -pg" - FFLAGS="${FFLAGS} -g -pg" - FCFLAGS="${FCFLAGS} -g -pg" - OBJCFLAGS="${OBJCFLAGS} -g -pg" - LDFLAGS="${LDFLAGS} -pg" - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + CFLAGS="${CFLAGS} -g -pg" + CXXFLAGS="${CXXFLAGS} -g -pg" + FFLAGS="${FFLAGS} -g -pg" + FCFLAGS="${FCFLAGS} -g -pg" + OBJCFLAGS="${OBJCFLAGS} -g -pg" + LDFLAGS="${LDFLAGS} -pg" + ;; #( + *) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - if test "x${CFLAGS+set}" != "xset"; then - CFLAGS="" - fi - if test "x${CXXFLAGS+set}" != "xset"; then - CXXFLAGS="" - fi - if test "x${FFLAGS+set}" != "xset"; then - FFLAGS="" - fi - if test "x${FCFLAGS+set}" != "xset"; then - FCFLAGS="" - fi - if test "x${OBJCFLAGS+set}" != "xset"; then - OBJCFLAGS="" - fi - fi + if test "x${CFLAGS+set}" != "xset"; then : + CFLAGS="" +fi + if test "x${CXXFLAGS+set}" != "xset"; then : + CXXFLAGS="" +fi + if test "x${FFLAGS+set}" != "xset"; then : + FFLAGS="" +fi + if test "x${FCFLAGS+set}" != "xset"; then : + FCFLAGS="" +fi + if test "x${OBJCFLAGS+set}" != "xset"; then : + OBJCFLAGS="" +fi + ;; +esac + if test "x$enable_debug" = "xyes"; then : + +$as_echo "#define GNOME_ENABLE_DEBUG /**/" >>confdefs.h + +else $as_echo "#define NDEBUG /**/" >>confdefs.h - fi +fi ax_enable_debug=$enable_debug @@ -19220,7 +19244,7 @@ fi -CONTROL_CENTER_VERSION=3.24.1 +CONTROL_CENTER_VERSION=3.24.2 @@ -19960,7 +19984,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gnome-control-center $as_me 3.24.1, which was +This file was extended by gnome-control-center $as_me 3.24.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20026,7 +20050,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gnome-control-center config.status 3.24.1 +gnome-control-center config.status 3.24.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru gnome-control-center-3.24.1/configure.ac gnome-control-center-3.24.2/configure.ac --- gnome-control-center-3.24.1/configure.ac 2017-04-12 09:32:02.000000000 +0000 +++ gnome-control-center-3.24.2/configure.ac 2017-05-10 08:11:23.000000000 +0000 @@ -1,4 +1,4 @@ -m4_define([gnome_control_center_version], 3.24.1) +m4_define([gnome_control_center_version], 3.24.2) AC_INIT([gnome-control-center], [gnome_control_center_version], [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-control-center]) diff -Nru gnome-control-center-3.24.1/debian/changelog gnome-control-center-3.24.2/debian/changelog --- gnome-control-center-3.24.1/debian/changelog 2017-04-26 02:29:00.000000000 +0000 +++ gnome-control-center-3.24.2/debian/changelog 2017-05-03 21:13:04.000000000 +0000 @@ -1,3 +1,10 @@ +gnome-control-center (1:3.24.2-0ubuntu1) artful; urgency=medium + + * New upstream release (LP: #1690253) + * Recommend gnome-user-guide again + + -- Jeremy Bicha Wed, 03 May 2017 17:13:04 -0400 + gnome-control-center (1:3.24.1-0ubuntu3) artful; urgency=medium * Drop universe recommends to suggests: diff -Nru gnome-control-center-3.24.1/debian/control gnome-control-center-3.24.2/debian/control --- gnome-control-center-3.24.1/debian/control 2017-04-26 02:29:00.000000000 +0000 +++ gnome-control-center-3.24.2/debian/control 2017-05-03 21:13:04.000000000 +0000 @@ -77,7 +77,7 @@ ttf-ubuntu-font-family Recommends: cups-pk-helper, gnome-online-accounts, - ubuntu-docs, + gnome-user-guide, gnome-user-share, gkbd-capplet, ibus, diff -Nru gnome-control-center-3.24.1/debian/control.in gnome-control-center-3.24.2/debian/control.in --- gnome-control-center-3.24.1/debian/control.in 2017-04-26 02:29:00.000000000 +0000 +++ gnome-control-center-3.24.2/debian/control.in 2017-05-03 21:13:04.000000000 +0000 @@ -73,7 +73,7 @@ ttf-ubuntu-font-family Recommends: cups-pk-helper, gnome-online-accounts, - ubuntu-docs, + gnome-user-guide, gnome-user-share, gkbd-capplet, ibus, diff -Nru gnome-control-center-3.24.1/debian/patches/52_region_language.patch gnome-control-center-3.24.2/debian/patches/52_region_language.patch --- gnome-control-center-3.24.1/debian/patches/52_region_language.patch 2017-04-26 02:29:00.000000000 +0000 +++ gnome-control-center-3.24.2/debian/patches/52_region_language.patch 2017-05-03 21:13:04.000000000 +0000 @@ -404,7 +404,7 @@ static void on_localed_properties_changed (GDBusProxy *proxy, GVariant *changed_properties, -@@ -1484,31 +1544,47 @@ on_localed_properties_changed (GDBusProx +@@ -1484,32 +1544,48 @@ on_localed_properties_changed (GDBusProx const gchar **strv; gsize len; gint i; @@ -454,6 +454,7 @@ g_free (priv->system_region); priv->system_region = g_strdup (time); g_variant_unref (v); + g_free (strv); + g_free (lang); + g_free (language); + g_free (messages); diff -Nru gnome-control-center-3.24.1/Makefile.in gnome-control-center-3.24.2/Makefile.in --- gnome-control-center-3.24.1/Makefile.in 2017-04-12 09:32:52.000000000 +0000 +++ gnome-control-center-3.24.2/Makefile.in 2017-05-10 08:12:01.000000000 +0000 @@ -162,8 +162,8 @@ CTAGS = ctags CSCOPE = cscope am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \ - COPYING ChangeLog INSTALL NEWS README ar-lib compile \ - config.guess config.sub install-sh ltmain.sh missing + COPYING ChangeLog INSTALL NEWS README compile config.guess \ + config.sub install-sh ltmain.sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) diff -Nru gnome-control-center-3.24.1/NEWS gnome-control-center-3.24.2/NEWS --- gnome-control-center-3.24.1/NEWS 2017-04-12 09:32:02.000000000 +0000 +++ gnome-control-center-3.24.2/NEWS 2017-05-10 08:27:46.000000000 +0000 @@ -1,4 +1,17 @@ ============== +Version 3.24.2 +============== + +- Memory leak and correctness fixes +- Translation updates + +Keyboard: +- Discard the added shortcut on Escape + +Network: +- Fix mobile broadband switch state + +============== Version 3.24.1 ============== diff -Nru gnome-control-center-3.24.1/panels/background/gdesktop-enums-types.c gnome-control-center-3.24.2/panels/background/gdesktop-enums-types.c --- gnome-control-center-3.24.1/panels/background/gdesktop-enums-types.c 2017-04-12 09:33:04.000000000 +0000 +++ gnome-control-center-3.24.2/panels/background/gdesktop-enums-types.c 2017-05-10 08:15:21.000000000 +0000 @@ -5,7 +5,7 @@ #include "gdesktop-enums-types.h" #include "cc-background-item.h" -/* enumerations from "/home/hadess/Projects/gnome-install/include/gsettings-desktop-schemas/gdesktop-enums.h" */ +/* enumerations from "/home/rmatos/Source/git.gnome.org/install/include/gsettings-desktop-schemas/gdesktop-enums.h" */ GType g_desktop_proxy_mode_get_type (void) { diff -Nru gnome-control-center-3.24.1/panels/background/gdesktop-enums-types.h gnome-control-center-3.24.2/panels/background/gdesktop-enums-types.h --- gnome-control-center-3.24.1/panels/background/gdesktop-enums-types.h 2016-09-23 11:06:58.000000000 +0000 +++ gnome-control-center-3.24.2/panels/background/gdesktop-enums-types.h 2017-05-10 08:15:21.000000000 +0000 @@ -7,7 +7,7 @@ #include G_BEGIN_DECLS -/* enumerations from "/home/hadess/Projects/gnome-install/include/gsettings-desktop-schemas/gdesktop-enums.h" */ +/* enumerations from "/home/rmatos/Source/git.gnome.org/install/include/gsettings-desktop-schemas/gdesktop-enums.h" */ GType g_desktop_proxy_mode_get_type (void) G_GNUC_CONST; #define G_DESKTOP_TYPE_DESKTOP_PROXY_MODE (g_desktop_proxy_mode_get_type()) GType g_desktop_toolbar_style_get_type (void) G_GNUC_CONST; diff -Nru gnome-control-center-3.24.1/panels/bluetooth/cc-bluetooth-resources.c gnome-control-center-3.24.2/panels/bluetooth/cc-bluetooth-resources.c --- gnome-control-center-3.24.1/panels/bluetooth/cc-bluetooth-resources.c 2015-11-02 14:40:15.000000000 +0000 +++ gnome-control-center-3.24.2/panels/bluetooth/cc-bluetooth-resources.c 2017-05-10 08:16:34.000000000 +0000 @@ -179,17 +179,43 @@ #define G_HAS_CONSTRUCTORS 1 -#define G_DEFINE_CONSTRUCTOR(_func) \ +/* We do some weird things to avoid the constructors being optimized + * away on VS2015 if WholeProgramOptimization is enabled. First we + * make a reference to the array from the wrapper to make sure its + * references. Then we use a pragma to make sure the wrapper function + * symbol is always included at the link stage. Also, the symbols + * need to be extern (but not dllexport), even though they are not + * really used from another object file. + */ + +/* We need to account for differences between the mangling of symbols + * for Win32 (x86) and x64 programs, as symbols on Win32 are prefixed + * with an underscore but symbols on x64 are not. + */ +#ifdef _WIN64 +#define G_MSVC_SYMBOL_PREFIX "" +#else +#define G_MSVC_SYMBOL_PREFIX "_" +#endif + +#define G_DEFINE_CONSTRUCTOR(_func) G_MSVC_CTOR (_func, G_MSVC_SYMBOL_PREFIX) +#define G_DEFINE_DESTRUCTOR(_func) G_MSVC_DTOR (_func, G_MSVC_SYMBOL_PREFIX) + +#define G_MSVC_CTOR(_func,_sym_prefix) \ static void _func(void); \ - static int _func ## _wrapper(void) { _func(); return 0; } \ + extern int (* _array ## _func)(void); \ + int _func ## _wrapper(void) { _func(); g_slist_find (NULL, _array ## _func); return 0; } \ + __pragma(comment(linker,"/include:" _sym_prefix # _func "_wrapper")) \ __pragma(section(".CRT$XCU",read)) \ - __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _wrapper; + __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _wrapper; -#define G_DEFINE_DESTRUCTOR(_func) \ +#define G_MSVC_DTOR(_func,_sym_prefix) \ static void _func(void); \ - static int _func ## _constructor(void) { atexit (_func); return 0; } \ + extern int (* _array ## _func)(void); \ + int _func ## _constructor(void) { atexit (_func); g_slist_find (NULL, _array ## _func); return 0; } \ + __pragma(comment(linker,"/include:" _sym_prefix # _func "_constructor")) \ __pragma(section(".CRT$XCU",read)) \ - __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _constructor; #elif defined (_MSC_VER) diff -Nru gnome-control-center-3.24.1/panels/datetime/timedated.c gnome-control-center-3.24.2/panels/datetime/timedated.c --- gnome-control-center-3.24.1/panels/datetime/timedated.c 2017-03-15 12:27:31.000000000 +0000 +++ gnome-control-center-3.24.2/panels/datetime/timedated.c 2017-05-10 08:15:53.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.51.4. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -496,7 +496,7 @@ */ typedef Timedate1Iface Timedate1Interface; -G_DEFINE_INTERFACE (Timedate1, timedate1, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (Timedate1, timedate1, G_TYPE_OBJECT) static void timedate1_default_init (Timedate1Iface *iface) @@ -1308,11 +1308,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (Timedate1Proxy, timedate1_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (Timedate1Proxy) - G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (Timedate1Proxy, timedate1_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_proxy_iface_init)) #endif static void @@ -1975,11 +1975,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (Timedate1Skeleton, timedate1_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (Timedate1Skeleton) - G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (Timedate1Skeleton, timedate1_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (TYPE_TIMEDATE1, timedate1_skeleton_iface_init)) #endif static void diff -Nru gnome-control-center-3.24.1/panels/datetime/timedated.h gnome-control-center-3.24.2/panels/datetime/timedated.h --- gnome-control-center-3.24.1/panels/datetime/timedated.h 2017-03-15 12:27:31.000000000 +0000 +++ gnome-control-center-3.24.2/panels/datetime/timedated.h 2017-05-10 08:15:53.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.51.4. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru gnome-control-center-3.24.1/panels/keyboard/cc-keyboard-resources.c gnome-control-center-3.24.2/panels/keyboard/cc-keyboard-resources.c --- gnome-control-center-3.24.1/panels/keyboard/cc-keyboard-resources.c 2017-03-15 12:27:31.000000000 +0000 +++ gnome-control-center-3.24.2/panels/keyboard/cc-keyboard-resources.c 2017-05-10 08:15:43.000000000 +0000 @@ -6,7 +6,7 @@ # define SECTION #endif -static const SECTION union { const guint8 data[35504]; const double alignment; void * const ptr;} cc_keyboard_resource_data = { { +static const SECTION union { const guint8 data[35608]; const double alignment; void * const ptr;} cc_keyboard_resource_data = { { 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, @@ -23,22 +23,22 @@ 0x28, 0x01, 0x00, 0x00, 0x4f, 0x40, 0x00, 0x00, 0xaa, 0x3b, 0xf3, 0xdc, 0x07, 0x00, 0x00, 0x00, 0x4f, 0x40, 0x00, 0x00, 0x12, 0x00, 0x76, 0x00, - 0x68, 0x40, 0x00, 0x00, 0x67, 0x74, 0x00, 0x00, + 0x68, 0x40, 0x00, 0x00, 0xcf, 0x74, 0x00, 0x00, 0x8b, 0x2e, 0x14, 0x66, 0x07, 0x00, 0x00, 0x00, - 0x67, 0x74, 0x00, 0x00, 0x17, 0x00, 0x76, 0x00, - 0x80, 0x74, 0x00, 0x00, 0x72, 0x8a, 0x00, 0x00, + 0xcf, 0x74, 0x00, 0x00, 0x17, 0x00, 0x76, 0x00, + 0xe8, 0x74, 0x00, 0x00, 0xda, 0x8a, 0x00, 0x00, 0x4b, 0x50, 0x90, 0x0b, 0x05, 0x00, 0x00, 0x00, - 0x72, 0x8a, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00, - 0x78, 0x8a, 0x00, 0x00, 0x7c, 0x8a, 0x00, 0x00, + 0xda, 0x8a, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00, + 0xe0, 0x8a, 0x00, 0x00, 0xe4, 0x8a, 0x00, 0x00, 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, - 0x7c, 0x8a, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, - 0x80, 0x8a, 0x00, 0x00, 0x84, 0x8a, 0x00, 0x00, + 0xe4, 0x8a, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, + 0xe8, 0x8a, 0x00, 0x00, 0xec, 0x8a, 0x00, 0x00, 0xce, 0xd7, 0x2c, 0x8d, 0x00, 0x00, 0x00, 0x00, - 0x84, 0x8a, 0x00, 0x00, 0x0f, 0x00, 0x4c, 0x00, - 0x94, 0x8a, 0x00, 0x00, 0x98, 0x8a, 0x00, 0x00, + 0xec, 0x8a, 0x00, 0x00, 0x0f, 0x00, 0x4c, 0x00, + 0xfc, 0x8a, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x4e, 0xbf, 0xfb, 0x73, 0x06, 0x00, 0x00, 0x00, - 0x98, 0x8a, 0x00, 0x00, 0x09, 0x00, 0x4c, 0x00, - 0xa4, 0x8a, 0x00, 0x00, 0xb0, 0x8a, 0x00, 0x00, + 0x00, 0x8b, 0x00, 0x00, 0x09, 0x00, 0x4c, 0x00, + 0x0c, 0x8b, 0x00, 0x00, 0x18, 0x8b, 0x00, 0x00, 0x67, 0x6e, 0x6f, 0x6d, 0x65, 0x2f, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2d, 0x6b, 0x65, 0x79, 0x62, 0x6f, 0x61, @@ -2068,7 +2068,7 @@ 0x68, 0x6f, 0x72, 0x74, 0x63, 0x75, 0x74, 0x2d, 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xef, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x57, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, @@ -2128,6 +2128,19 @@ 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, + 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x22, 0x20, 0x68, + 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, + 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x5f, 0x62, + 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, + 0x69, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x63, 0x62, + 0x22, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, + 0x3d, 0x22, 0x43, 0x63, 0x4b, 0x65, 0x79, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x53, 0x68, 0x6f, 0x72, + 0x74, 0x63, 0x75, 0x74, 0x45, 0x64, 0x69, 0x74, + 0x6f, 0x72, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, + 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, + 0x2f, 0x3e, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, + 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x67, diff -Nru gnome-control-center-3.24.1/panels/keyboard/shortcut-editor.ui gnome-control-center-3.24.2/panels/keyboard/shortcut-editor.ui --- gnome-control-center-3.24.1/panels/keyboard/shortcut-editor.ui 2017-03-14 13:55:38.000000000 +0000 +++ gnome-control-center-3.24.2/panels/keyboard/shortcut-editor.ui 2017-05-10 08:10:27.000000000 +0000 @@ -9,6 +9,7 @@ 300 center dialog + diff -Nru gnome-control-center-3.24.1/panels/network/net-device-mobile.c gnome-control-center-3.24.2/panels/network/net-device-mobile.c --- gnome-control-center-3.24.1/panels/network/net-device-mobile.c 2016-10-05 14:47:19.000000000 +0000 +++ gnome-control-center-3.24.2/panels/network/net-device-mobile.c 2017-05-10 08:10:27.000000000 +0000 @@ -171,7 +171,22 @@ if (nm_device_get_device_type (device) != NM_DEVICE_TYPE_MODEM) return; - enabled = nm_client_wwan_get_enabled (client); + if (nm_client_wwan_get_enabled (client)) { + NMDeviceState state; + + state = nm_device_get_state (device); + if (state == NM_DEVICE_STATE_UNKNOWN || + state == NM_DEVICE_STATE_UNMANAGED || + state == NM_DEVICE_STATE_UNAVAILABLE || + state == NM_DEVICE_STATE_DISCONNECTED || + state == NM_DEVICE_STATE_DEACTIVATING || + state == NM_DEVICE_STATE_FAILED) { + enabled = FALSE; + } else { + enabled = TRUE; + } + } + sw = GTK_SWITCH (gtk_builder_get_object (device_mobile->priv->builder, "device_off_switch")); diff -Nru gnome-control-center-3.24.1/panels/region/cc-region-panel.c gnome-control-center-3.24.2/panels/region/cc-region-panel.c --- gnome-control-center-3.24.1/panels/region/cc-region-panel.c 2017-03-14 13:55:38.000000000 +0000 +++ gnome-control-center-3.24.2/panels/region/cc-region-panel.c 2017-05-10 08:10:27.000000000 +0000 @@ -1509,6 +1509,7 @@ g_free (priv->system_region); priv->system_region = g_strdup (time); g_variant_unref (v); + g_free (strv); update_language_label (self); } diff -Nru gnome-control-center-3.24.1/panels/search/cc-search-panel.c gnome-control-center-3.24.2/panels/search/cc-search-panel.c --- gnome-control-center-3.24.1/panels/search/cc-search-panel.c 2016-11-24 15:57:32.000000000 +0000 +++ gnome-control-center-3.24.2/panels/search/cc-search-panel.c 2017-05-10 08:10:27.000000000 +0000 @@ -405,6 +405,7 @@ } } + g_free (apps); g_value_set_boolean (value, !!default_enabled != !!found); return TRUE; diff -Nru gnome-control-center-3.24.1/panels/sharing/cc-sharing-panel.c gnome-control-center-3.24.2/panels/sharing/cc-sharing-panel.c --- gnome-control-center-3.24.1/panels/sharing/cc-sharing-panel.c 2016-11-24 15:57:32.000000000 +0000 +++ gnome-control-center-3.24.2/panels/sharing/cc-sharing-panel.c 2017-05-10 08:10:27.000000000 +0000 @@ -553,7 +553,7 @@ G_CALLBACK (cc_sharing_panel_remove_folder), self); g_object_set_data (G_OBJECT (w), "row", row); - g_object_set_data_full (G_OBJECT (row), "path", g_strdup (path), g_free); + g_object_set_data_full (G_OBJECT (row), "path", path, g_free); gtk_widget_show_all (row); diff -Nru gnome-control-center-3.24.1/panels/sharing/org.gnome.SettingsDaemon.Sharing.c gnome-control-center-3.24.2/panels/sharing/org.gnome.SettingsDaemon.Sharing.c --- gnome-control-center-3.24.1/panels/sharing/org.gnome.SettingsDaemon.Sharing.c 2016-04-29 12:02:58.000000000 +0000 +++ gnome-control-center-3.24.2/panels/sharing/org.gnome.SettingsDaemon.Sharing.c 2017-05-10 08:16:00.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.48.0. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -421,7 +421,7 @@ */ typedef GsdSharingIface GsdSharingInterface; -G_DEFINE_INTERFACE (GsdSharing, gsd_sharing, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (GsdSharing, gsd_sharing, G_TYPE_OBJECT) static void gsd_sharing_default_init (GsdSharingIface *iface) @@ -1108,11 +1108,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (GsdSharingProxy, gsd_sharing_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (GsdSharingProxy) - G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (GsdSharingProxy, gsd_sharing_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_proxy_iface_init)) #endif static void @@ -1200,8 +1200,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_gsd_sharing_interface_info.parent_struct, signal_name); if (info == NULL) @@ -1583,9 +1583,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -1775,11 +1775,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (GsdSharingSkeleton, gsd_sharing_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (GsdSharingSkeleton) - G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (GsdSharingSkeleton, gsd_sharing_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (GSD_TYPE_SHARING, gsd_sharing_skeleton_iface_init)) #endif static void diff -Nru gnome-control-center-3.24.1/panels/sharing/org.gnome.SettingsDaemon.Sharing.h gnome-control-center-3.24.2/panels/sharing/org.gnome.SettingsDaemon.Sharing.h --- gnome-control-center-3.24.1/panels/sharing/org.gnome.SettingsDaemon.Sharing.h 2016-04-29 12:02:58.000000000 +0000 +++ gnome-control-center-3.24.2/panels/sharing/org.gnome.SettingsDaemon.Sharing.h 2017-05-10 08:16:00.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.48.0. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru gnome-control-center-3.24.1/panels/user-accounts/um-realm-generated.c gnome-control-center-3.24.2/panels/user-accounts/um-realm-generated.c --- gnome-control-center-3.24.1/panels/user-accounts/um-realm-generated.c 2015-11-02 14:39:22.000000000 +0000 +++ gnome-control-center-3.24.2/panels/user-accounts/um-realm-generated.c 2017-05-10 08:15:46.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.47.1. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -353,7 +353,7 @@ */ typedef UmRealmProviderIface UmRealmProviderInterface; -G_DEFINE_INTERFACE (UmRealmProvider, um_realm_provider, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (UmRealmProvider, um_realm_provider, G_TYPE_OBJECT) static void um_realm_provider_default_init (UmRealmProviderIface *iface) @@ -731,11 +731,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmProviderProxy, um_realm_provider_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (UmRealmProviderProxy) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmProviderProxy, um_realm_provider_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_proxy_iface_init)) #endif static void @@ -823,8 +823,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_um_realm_provider_interface_info.parent_struct, signal_name); if (info == NULL) @@ -1190,9 +1190,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -1382,11 +1382,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmProviderSkeleton, um_realm_provider_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (UmRealmProviderSkeleton) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmProviderSkeleton, um_realm_provider_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_PROVIDER, um_realm_provider_skeleton_iface_init)) #endif static void @@ -1846,7 +1846,7 @@ */ typedef UmRealmServiceIface UmRealmServiceInterface; -G_DEFINE_INTERFACE (UmRealmService, um_realm_service, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (UmRealmService, um_realm_service, G_TYPE_OBJECT) static void um_realm_service_default_init (UmRealmServiceIface *iface) @@ -2327,11 +2327,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmServiceProxy, um_realm_service_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (UmRealmServiceProxy) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmServiceProxy, um_realm_service_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_proxy_iface_init)) #endif static void @@ -2368,8 +2368,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_um_realm_service_interface_info.parent_struct, signal_name); if (info == NULL) @@ -2685,9 +2685,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -2887,11 +2887,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmServiceSkeleton, um_realm_service_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (UmRealmServiceSkeleton) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmServiceSkeleton, um_realm_service_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_SERVICE, um_realm_service_skeleton_iface_init)) #endif static void @@ -3254,7 +3254,7 @@ */ typedef UmRealmCommonIface UmRealmCommonInterface; -G_DEFINE_INTERFACE (UmRealmCommon, um_realm_common, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (UmRealmCommon, um_realm_common, G_TYPE_OBJECT) static void um_realm_common_default_init (UmRealmCommonIface *iface) @@ -4007,11 +4007,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmCommonProxy, um_realm_common_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (UmRealmCommonProxy) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmCommonProxy, um_realm_common_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_proxy_iface_init)) #endif static void @@ -4099,8 +4099,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_um_realm_common_interface_info.parent_struct, signal_name); if (info == NULL) @@ -4540,9 +4540,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -4732,11 +4732,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmCommonSkeleton, um_realm_common_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (UmRealmCommonSkeleton) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmCommonSkeleton, um_realm_common_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_COMMON, um_realm_common_skeleton_iface_init)) #endif static void @@ -5154,7 +5154,7 @@ */ typedef UmRealmKerberosIface UmRealmKerberosInterface; -G_DEFINE_INTERFACE (UmRealmKerberos, um_realm_kerberos, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (UmRealmKerberos, um_realm_kerberos, G_TYPE_OBJECT) static void um_realm_kerberos_default_init (UmRealmKerberosIface *iface) @@ -5307,11 +5307,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosProxy, um_realm_kerberos_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (UmRealmKerberosProxy) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosProxy, um_realm_kerberos_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_proxy_iface_init)) #endif static void @@ -5399,8 +5399,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_um_realm_kerberos_interface_info.parent_struct, signal_name); if (info == NULL) @@ -5750,9 +5750,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -5942,11 +5942,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosSkeleton, um_realm_kerberos_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (UmRealmKerberosSkeleton) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosSkeleton, um_realm_kerberos_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS, um_realm_kerberos_skeleton_iface_init)) #endif static void @@ -6408,7 +6408,7 @@ */ typedef UmRealmKerberosMembershipIface UmRealmKerberosMembershipInterface; -G_DEFINE_INTERFACE (UmRealmKerberosMembership, um_realm_kerberos_membership, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (UmRealmKerberosMembership, um_realm_kerberos_membership, G_TYPE_OBJECT) static void um_realm_kerberos_membership_default_init (UmRealmKerberosMembershipIface *iface) @@ -6914,11 +6914,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosMembershipProxy, um_realm_kerberos_membership_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (UmRealmKerberosMembershipProxy) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosMembershipProxy, um_realm_kerberos_membership_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_proxy_iface_init)) #endif static void @@ -7006,8 +7006,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_um_realm_kerberos_membership_interface_info.parent_struct, signal_name); if (info == NULL) @@ -7369,9 +7369,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -7561,11 +7561,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosMembershipSkeleton, um_realm_kerberos_membership_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (UmRealmKerberosMembershipSkeleton) - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (UmRealmKerberosMembershipSkeleton, um_realm_kerberos_membership_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_KERBEROS_MEMBERSHIP, um_realm_kerberos_membership_skeleton_iface_init)) #endif static void @@ -7847,7 +7847,7 @@ */ typedef UmRealmObjectIface UmRealmObjectInterface; -G_DEFINE_INTERFACE_WITH_CODE (UmRealmObject, um_realm_object, G_TYPE_OBJECT, g_type_interface_add_prerequisite (g_define_type_id, G_TYPE_DBUS_OBJECT)); +G_DEFINE_INTERFACE_WITH_CODE (UmRealmObject, um_realm_object, G_TYPE_OBJECT, g_type_interface_add_prerequisite (g_define_type_id, G_TYPE_DBUS_OBJECT);) static void um_realm_object_default_init (UmRealmObjectIface *iface) @@ -8125,7 +8125,7 @@ G_DEFINE_TYPE_WITH_CODE (UmRealmObjectProxy, um_realm_object_proxy, G_TYPE_DBUS_OBJECT_PROXY, G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_OBJECT, um_realm_object_proxy__um_realm_object_iface_init) - G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_OBJECT, um_realm_object_proxy__g_dbus_object_iface_init)); + G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_OBJECT, um_realm_object_proxy__g_dbus_object_iface_init)) static void um_realm_object_proxy_init (UmRealmObjectProxy *object G_GNUC_UNUSED) @@ -8244,7 +8244,7 @@ G_DEFINE_TYPE_WITH_CODE (UmRealmObjectSkeleton, um_realm_object_skeleton, G_TYPE_DBUS_OBJECT_SKELETON, G_IMPLEMENT_INTERFACE (UM_REALM_TYPE_OBJECT, um_realm_object_skeleton__um_realm_object_iface_init) - G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_OBJECT, um_realm_object_skeleton__g_dbus_object_iface_init)); + G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_OBJECT, um_realm_object_skeleton__g_dbus_object_iface_init)) static void um_realm_object_skeleton_init (UmRealmObjectSkeleton *object G_GNUC_UNUSED) @@ -8492,7 +8492,7 @@ * Class structure for #UmRealmObjectManagerClient. */ -G_DEFINE_TYPE (UmRealmObjectManagerClient, um_realm_object_manager_client, G_TYPE_DBUS_OBJECT_MANAGER_CLIENT); +G_DEFINE_TYPE (UmRealmObjectManagerClient, um_realm_object_manager_client, G_TYPE_DBUS_OBJECT_MANAGER_CLIENT) static void um_realm_object_manager_client_init (UmRealmObjectManagerClient *manager G_GNUC_UNUSED) diff -Nru gnome-control-center-3.24.1/panels/user-accounts/um-realm-generated.h gnome-control-center-3.24.2/panels/user-accounts/um-realm-generated.h --- gnome-control-center-3.24.1/panels/user-accounts/um-realm-generated.h 2015-11-02 14:39:22.000000000 +0000 +++ gnome-control-center-3.24.2/panels/user-accounts/um-realm-generated.h 2017-05-10 08:15:46.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.47.1. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -126,6 +126,10 @@ GType um_realm_provider_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmProviderProxy, g_object_unref) +#endif + void um_realm_provider_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -192,6 +196,10 @@ GType um_realm_provider_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmProviderSkeleton, g_object_unref) +#endif + UmRealmProvider *um_realm_provider_skeleton_new (void); @@ -344,6 +352,10 @@ GType um_realm_service_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmServiceProxy, g_object_unref) +#endif + void um_realm_service_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -410,6 +422,10 @@ GType um_realm_service_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmServiceSkeleton, g_object_unref) +#endif + UmRealmService *um_realm_service_skeleton_new (void); @@ -578,6 +594,10 @@ GType um_realm_common_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmCommonProxy, g_object_unref) +#endif + void um_realm_common_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -644,6 +664,10 @@ GType um_realm_common_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmCommonSkeleton, g_object_unref) +#endif + UmRealmCommon *um_realm_common_skeleton_new (void); @@ -712,6 +736,10 @@ GType um_realm_kerberos_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmKerberosProxy, g_object_unref) +#endif + void um_realm_kerberos_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -778,6 +806,10 @@ GType um_realm_kerberos_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmKerberosSkeleton, g_object_unref) +#endif + UmRealmKerberos *um_realm_kerberos_skeleton_new (void); @@ -919,6 +951,10 @@ GType um_realm_kerberos_membership_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmKerberosMembershipProxy, g_object_unref) +#endif + void um_realm_kerberos_membership_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -985,6 +1021,10 @@ GType um_realm_kerberos_membership_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmKerberosMembershipSkeleton, g_object_unref) +#endif + UmRealmKerberosMembership *um_realm_kerberos_membership_skeleton_new (void); @@ -1041,6 +1081,11 @@ }; GType um_realm_object_proxy_get_type (void) G_GNUC_CONST; + +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmObjectProxy, g_object_unref) +#endif + UmRealmObjectProxy *um_realm_object_proxy_new (GDBusConnection *connection, const gchar *object_path); #define UM_REALM_TYPE_OBJECT_SKELETON (um_realm_object_skeleton_get_type ()) @@ -1067,6 +1112,11 @@ }; GType um_realm_object_skeleton_get_type (void) G_GNUC_CONST; + +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmObjectSkeleton, g_object_unref) +#endif + UmRealmObjectSkeleton *um_realm_object_skeleton_new (const gchar *object_path); void um_realm_object_skeleton_set_provider (UmRealmObjectSkeleton *object, UmRealmProvider *interface_); void um_realm_object_skeleton_set_service (UmRealmObjectSkeleton *object, UmRealmService *interface_); @@ -1099,6 +1149,10 @@ GDBusObjectManagerClientClass parent_class; }; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (UmRealmObjectManagerClient, g_object_unref) +#endif + GType um_realm_object_manager_client_get_type (void) G_GNUC_CONST; GType um_realm_object_manager_client_get_proxy_type (GDBusObjectManagerClient *manager, const gchar *object_path, const gchar *interface_name, gpointer user_data); diff -Nru gnome-control-center-3.24.1/po/fur.po gnome-control-center-3.24.2/po/fur.po --- gnome-control-center-3.24.1/po/fur.po 2017-03-20 11:59:32.000000000 +0000 +++ gnome-control-center-3.24.2/po/fur.po 2017-05-10 08:10:27.000000000 +0000 @@ -8,8 +8,8 @@ "Project-Id-Version: gnome-control-center master\n" "Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "control-center&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-03-15 12:40+0000\n" -"PO-Revision-Date: 2017-03-18 16:35+0100\n" +"POT-Creation-Date: 2017-04-12 09:42+0000\n" +"PO-Revision-Date: 2017-04-14 21:23+0200\n" "Last-Translator: Fabio Tomat \n" "Language-Team: Friulian \n" "Language: fur\n" @@ -1769,9 +1769,9 @@ msgid "High contrast on or off" msgstr "Ative o disative il contrast elevât" -#: ../panels/keyboard/cc-keyboard-manager.c:514 -#: ../panels/keyboard/cc-keyboard-manager.c:522 -#: ../panels/keyboard/cc-keyboard-manager.c:830 +#: ../panels/keyboard/cc-keyboard-manager.c:512 +#: ../panels/keyboard/cc-keyboard-manager.c:520 +#: ../panels/keyboard/cc-keyboard-manager.c:828 msgid "Custom Shortcuts" msgstr "Scurtis personalizadis" @@ -1785,7 +1785,7 @@ #: ../panels/keyboard/keyboard-shortcuts.c:440 #: ../panels/keyboard/shortcut-editor.ui.h:2 #: ../panels/network/network-wifi.ui.h:31 -#: ../panels/sound/gvc/gvc-mixer-control.c:1830 +#: ../panels/sound/gvc/gvc-mixer-control.c:1866 #: ../panels/user-accounts/um-fingerprint-dialog.c:214 msgid "Disabled" msgstr "Disativât" @@ -4217,12 +4217,12 @@ msgstr "Autenticazion necessarie" #. Translators: Addition of the new printer failed. -#: ../panels/printers/cc-printers-panel.c:713 +#: ../panels/printers/cc-printers-panel.c:735 msgid "Failed to add new printer." msgstr "Zonte de gnove stampant falide." #. Translators: The XML file containing user interface can not be loaded -#: ../panels/printers/cc-printers-panel.c:959 +#: ../panels/printers/cc-printers-panel.c:983 #, c-format msgid "Could not load ui: %s" msgstr "Impussibil cjariâ la interface: %s" @@ -5558,7 +5558,7 @@ #. translators: #. * The number of sound outputs on a particular device -#: ../panels/sound/gvc/gvc-mixer-control.c:1837 +#: ../panels/sound/gvc/gvc-mixer-control.c:1873 #, c-format msgid "%u Output" msgid_plural "%u Outputs" @@ -5567,14 +5567,14 @@ #. translators: #. * The number of sound inputs on a particular device -#: ../panels/sound/gvc/gvc-mixer-control.c:1847 +#: ../panels/sound/gvc/gvc-mixer-control.c:1883 #, c-format msgid "%u Input" msgid_plural "%u Inputs" msgstr[0] "%u ingrès" msgstr[1] "%u jentradis" -#: ../panels/sound/gvc/gvc-mixer-control.c:2373 +#: ../panels/sound/gvc/gvc-mixer-control.c:2738 msgid "System Sounds" msgstr "Suns di sisteme" @@ -7134,7 +7134,7 @@ #: ../panels/wacom/gnome-wacom-properties.ui.h:9 msgid "Wacom Tablet" -msgstr "Taulute Wacom" +msgstr "Taulete Wacom" #: ../panels/wacom/gnome-wacom-properties.ui.h:10 msgid "Map to Monitor…" @@ -7190,7 +7190,7 @@ #: ../panels/wacom/wacom-stylus-page.ui.h:7 msgid "Please move your stylus to the proximity of the tablet to configure it" -msgstr "Sposte la tô pene dongje de taulute par configurâle" +msgstr "Sposte la tô pene dongje de taulete par configurâle" #: ../panels/wacom/wacom-stylus-page.ui.h:10 msgid "Eraser Pressure Feel" diff -Nru gnome-control-center-3.24.1/search-provider/cc-shell-search-provider-generated.c gnome-control-center-3.24.2/search-provider/cc-shell-search-provider-generated.c --- gnome-control-center-3.24.1/search-provider/cc-shell-search-provider-generated.c 2016-10-05 14:53:06.000000000 +0000 +++ gnome-control-center-3.24.2/search-provider/cc-shell-search-provider-generated.c 2017-05-10 08:16:44.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.50.0. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -486,7 +486,7 @@ */ typedef CcShellSearchProvider2Iface CcShellSearchProvider2Interface; -G_DEFINE_INTERFACE (CcShellSearchProvider2, cc_shell_search_provider2, G_TYPE_OBJECT); +G_DEFINE_INTERFACE (CcShellSearchProvider2, cc_shell_search_provider2, G_TYPE_OBJECT) static void cc_shell_search_provider2_default_init (CcShellSearchProvider2Iface *iface) @@ -1269,11 +1269,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (CcShellSearchProvider2Proxy, cc_shell_search_provider2_proxy, G_TYPE_DBUS_PROXY, G_ADD_PRIVATE (CcShellSearchProvider2Proxy) - G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_proxy_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (CcShellSearchProvider2Proxy, cc_shell_search_provider2_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_proxy_iface_init)); + G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_proxy_iface_init)) #endif static void @@ -1310,8 +1310,8 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; - guint n; + gsize num_params; + gsize n; guint signal_id; info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_cc_shell_search_provider2_interface_info.parent_struct, signal_name); if (info == NULL) @@ -1627,9 +1627,9 @@ GVariantIter iter; GVariant *child; GValue *paramv; - guint num_params; + gsize num_params; guint num_extra; - guint n; + gsize n; guint signal_id; GValue return_value = G_VALUE_INIT; info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); @@ -1803,11 +1803,11 @@ #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 G_DEFINE_TYPE_WITH_CODE (CcShellSearchProvider2Skeleton, cc_shell_search_provider2_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, G_ADD_PRIVATE (CcShellSearchProvider2Skeleton) - G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_skeleton_iface_init)) #else G_DEFINE_TYPE_WITH_CODE (CcShellSearchProvider2Skeleton, cc_shell_search_provider2_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_skeleton_iface_init)); + G_IMPLEMENT_INTERFACE (CC_TYPE_SHELL_SEARCH_PROVIDER2, cc_shell_search_provider2_skeleton_iface_init)) #endif static void diff -Nru gnome-control-center-3.24.1/search-provider/cc-shell-search-provider-generated.h gnome-control-center-3.24.2/search-provider/cc-shell-search-provider-generated.h --- gnome-control-center-3.24.1/search-provider/cc-shell-search-provider-generated.h 2016-10-05 14:53:06.000000000 +0000 +++ gnome-control-center-3.24.2/search-provider/cc-shell-search-provider-generated.h 2017-05-10 08:16:44.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.50.0. DO NOT EDIT. + * Generated by gdbus-codegen 2.53.2. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru gnome-control-center-3.24.1/shell/hostname-helper.c gnome-control-center-3.24.2/shell/hostname-helper.c --- gnome-control-center-3.24.1/shell/hostname-helper.c 2017-03-14 13:55:38.000000000 +0000 +++ gnome-control-center-3.24.2/shell/hostname-helper.c 2017-05-10 08:10:27.000000000 +0000 @@ -208,6 +208,9 @@ break; } + if (*p == '\0') + break; + prev = p; }